TAdvStringGrid: AddCheckBoxColumn and custom OBJ

Hi,


I have AdvStringGrid with a first fixed column and I associated some object with Grid->Objects[0,i] for all my rows. Now I would like to add a check box in that column as well using Grid->AddCheckBoxColumn(0) and during debugging I recognized that TStringGrid.GetObjects is called for that column.

Now I wonder if it is safe to use column 0 with my object and a checkbox at the same time? If not, how can I know which object columns already have some internal purpose?

It is safe to use grid.Objects[] irrespective of adding checkboxes or other items to cells. grid.Objects[] is handled separately from internal objects to manage cell items like checkboxes.