System.Tether.AppProfile.TSimpleValue

De RAD Studio API Documentation
Aller à : navigation, rechercher

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;
        };
    };
};

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.

Voir aussi