| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Record describing a float value
Source position: sysstrh.inc line 30
type TFloatRec = record  | 
||
Exponent: Integer;  | 
  | 
Exponent part  | 
Negative: Boolean;  | 
  | 
Sign part  | 
Digits: array [0..18] of Char;  | 
  | 
Digits of fraction  | 
end;  | 
TFloatRec is used to describe a floating point value by the FloatToDecimal function.
  | 
Convert a float value to a TFloatRec value.  |