FMX.Grid.TGridModel.TCellInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TCellInfo = record
      Coord: TGridModel.TCoord;
      Rect: TRect;
    end;

C++

struct DECLSPEC_DRECORD TCellInfo
{
public:
    TGridModel::TCoord Coord;
    System::Types::TRect Rect;
};

Properties

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

Description

Represents the grid coordinates and the rectangle of a cell.

See Also