TdxCustomTileBar.FocusedItem Property
Specifies the focused tile.
Declaration
property FocusedItem: TdxTileBarItem read; write;
Property Value
Type |
---|
TdxTileBarItem |
Remarks
You can use this property to:
Identify which tile has focus.
Focus a tile. Assign a target tile to the FocusedItem property. The control highlights the focused tile and scrolls it into view.
Remove focus from the tile. Assign nil (in Delphi) or nullptr/NULL (in C++Builder) to the FocusedItem property.
An end user can click a tile to focus it or press arrow keys to move focus between tiles.
The FocusedItem property’s default value is nil.
See Also