Important: The information in this document is obsolete and should not be used for new development.
The Triple Integer Array
TheFormatRecToString
function uses the triple-integer array, defined by theTripleInt
data type, to return the starting position and length in a string of three different portions of a formatted numeric string: the positive value string, the negative value string, and the zero value string. Each element of the triple integer array is anFVector
record.
TripleInt = ARRAY[0..2] OF FVector; {indexed by fPositive..fZero} FVector = RECORD start: Integer; length: Integer; END;Each of the three
Field Description
start
- The starting byte position in the string of the specification information.
length
- The number of bytes used in the string for the specification information.
FVector
entries in the triple integer array is accessed by one of the values of theFormatClass
type.
FormatClass = (fPositive,fNegative,fZero);