FMX.Grid.TCustomGrid.Selected
Delphi
property Selected: Integer read GetRow write SetSelected;
C++
__property int Selected = {read=GetRow, write=SetSelected, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Grid.pas FMX.Grid.hpp |
FMX.Grid | TCustomGrid |
Description
Specifies the row where you are currently positioned within the grid.
Set the Selected property to any positive numerical value to make the specific row selected. Read Selected to obtain the index of the row where you are currently positioned within the grid.
The first row has an index of 0, the second one has an index of 1, and so on.