API:FMX.Grid.TGridModel.TCoord

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

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TGridModel

Description

Embarcadero Technologies does not currently have any additional information.