Subject Re: [IBO] TIB_Grid
Author Helen Borrie
At 02:22 PM 06-12-02 +1100, you wrote:
>Applies to
>TIB_Grid
>Declaration
>property Col;
>
>Can someone give me just a little more info on the Col property?
>The help file (as above) is just a tad scant of info.

It's only a redeclaration of the property in the ancestor...here's the
Delphi help for it, which is a tad less scanty:

Use Col at runtime to determine the current column in the grid. Setting Col
moves focus to the cell in the current row that is in the new column. The
first column has an index of 0, the second column an index of 1, and so on.

The selected cell in the grid can be located by reading the Col property
and the Row property to obtain the indexes of its column and row. When
focus moves to the grid, the selected cell gets input focus.

cheers,
Helen