API:System.SysUtils.LongRec

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

Delphi

  LongRec = packed record
    case Integer of
      0: (Lo, Hi: Word);
      1: (Words: array [0..1] of Word);
      2: (Bytes: array [0..3] of Byte);
  end;

C++

struct DECLSPEC_DRECORD LongRec
{
public:
    union
    {
        struct
        {
            System::StaticArray<System::Byte, 4> Bytes;
        };
        struct
        {
            System::StaticArray<System::Word, 2> Words;
        };
        struct
        {
            System::Word Lo;
            System::Word Hi;
        };
    };
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

説明

このトピックには現在ドキュメントが存在しません。「ノート」を利用してこのトピックの改良について話しあうことができます。