How to set ‘selected’ property of TGrid to -1

  

I am using a FMX.Grid.TGrid in which a user can select complete rows. In some cases I want to reset this selection. If I do this with grid.selected = -1 or with grid.selectRow(-1) the selection is removed from the grid but grid.selected is set to ‘0’ (in TCustomGrid.SelectCell), which is the first row.

How can i reset the selection so that the property grid.selected is ‘-1’?

Comments are closed.