API:System.SysUtils.TFloatRec
Delphi
TFloatRec = packed record
Exponent: Smallint;
Negative: Boolean;
Digits: array[0..20] of Byte;
end;
C++
struct DECLSPEC_DRECORD TFloatRec
{
public:
short Exponent;
bool Negative;
System::StaticArray<System::Byte, 21> Digits;
};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
record struct |
public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!