Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Text /
Chapter 5 - Text Utilities / Text Utilities Reference
Data Structures /


The Number Format Specification Record

Four of the numeric string functions use the number formatting specification, defined by the NumFormatStringRec data type: StringToFormatRec, FormatRecToString, StringToExtended, and ExtendedToString. The number format specification record contains the data that represents the internal number formatting specification information. This data is stored in a private format.

NumFormatStringRec =
PACKED RECORD
   fLength: Byte;
   fVersion: Byte;
   hidden: ARRAY [0..253] OF INTEGER;{only for temporary use}
END;
Field Description
fLength
The number of bytes (plus 1) in the hidden data actually used for this number formatting specification.
fVersion
The version number of the number formatting specification.
hidden
The data that comprises the number formatting specification.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
6 JUL 1996