API:FMX.Grid.TGridModel.TCoord

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

Delphi

    TCoord = record
      procedure Clear;
      function IsEmpty: Boolean;
      case Boolean of
        False:
          (Col, Row: Integer);
        True:
          (AsArray: array [0 .. 1] of Integer);
    end;

C++

struct DECLSPEC_DRECORD TCoord
{
public:
    void __fastcall Clear();
    bool __fastcall IsEmpty();
public:
    union
    {
        struct
        {
            System::StaticArray<int, 2> AsArray;
        };
        struct
        {
            int Col;
            int Row;
        };
    };
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TGridModel

説明

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