System.Tether.AppProfile.TSimpleValue

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

  TSimpleValue = record
    case Integer of
      0: (FInteger: Integer);
      1: (FSingle: Single);
      2: (FDouble: Double);
      3: (FInt64: Int64);
      4: (FBoolean: Boolean);
  end;

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 がこのレコードがサポートする型のいずれかをラップする必要があるときに、内部的に使用します。

関連項目