RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Grids.TGridCoord Record

TGridCoord specifies a cell in a grid control.

Pascal
TGridCoord = record
  X: Longint;
  Y: Longint;
end;
C++
struct TGridCoord {
  Longint X;
  Longint Y;
};

Grids

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. 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!