TFloatRec
Record describing a float value
Declaration
Source position: sysstrh.inc line 30
Type
TFloatRec = record
public
  Exponent : Integer;
  Negative : Boolean;
  Digits : Array[0..18] of Char;
end
Description
TFloatRec is used to describe a floating point value by the FloatToDecimal function.
See also
| Name | Description | 
|---|---|
| FloatToDecimal | Convert a float value to a TFloatRec value. | 
| Integer | A signed 16-bits integer |