System.Tether.AppProfile.TSimpleValue
Delphi
TSimpleValue = record
C++
struct DECLSPEC_DRECORD TSimpleValue
{
public:
    union
    {
        struct
        {
            bool FBoolean;
        };
        struct
        {
            __int64 FInt64;
        };
        struct
        {
            double FDouble;
        };
        struct
        {
            float FSingle;
        };
        struct
        {
            int FInteger;
        };
    };
};
Propriétés
| Type | Visibilité | Source | Unité | Parent | 
|---|---|---|---|---|
| record struct | public | System.Tether.AppProfile.pas System.Tether.AppProfile.hpp | System.Tether.AppProfile | System.Tether.AppProfile | 
Description
Enregistrement qui peut contenir un booléen, un entier ou un nombre à virgule flottante.
Cet enregistrement est utilisé de manière interne par TResourceValue quand il doit encapsuler l'un des types que cet enregistrement prend en charge.