Vcl.Grids.TGridCoord
Delphi
TGridCoord = record
C++
struct DECLSPEC_DRECORD TGridCoord
{
public:
System::LongInt X;
System::LongInt Y;
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | Vcl.Grids |
Description
TGridCoord specifies a cell in a grid control.
TGridCoord indicates a specific cell in a grid.
X indicates the column of the grid, where 0 specifies the first column, 1 specifies the second column, and so on.
Y indicates the row of the grid, where 0 specifies the first row, 1 specifies the second row, and so on.