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;
        };
    };
};
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 | 
|---|---|---|---|---|
| record struct | public | System.Tether.AppProfile.pas System.Tether.AppProfile.hpp | System.Tether.AppProfile | System.Tether.AppProfile | 
説明
ブーリアン、整数または浮動小数点数を格納しているレコード。
このレコードは、TResourceValue がこのレコードがサポートする型のいずれかをラップする必要があるときに、内部的に使用します。