TdxTileControlItem.Checked Property
Specifies if the current tile item is selected (also called checked).
Declaration
property Checked: Boolean read; write; default False;
Property Value
Type | Default |
---|---|
Boolean | False |
Remarks
Set this property to True to select (check) the current tile item and add it to the current selection. Otherwise, the tile item is not selected.
You can handle a tile control’s OnItemBeforeCheck and OnItemCheck events to respond to selection changes. To customize the appearance of checked tile items, use a tile control’s Style.CheckedItemCheckMarkColor and Style.CheckedItemFrameColor properties.
Note
The Checked property can be set to True only for enabled tile items and only if a tile control’s OptionsBehavior.ItemCheckMode property is set to tcicmMultiple.
The default value of the Checked property is False.
See Also