TGridCoord specifies a cell in a grid control.
TGridCoord = record X: Longint; Y: Longint; end;
struct TGridCoord { Longint X; Longint Y; };
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) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|