Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxTileControlItem.Checked Property

Specifies if the current tile item is selected (also called checked).

#Declaration

Delphi
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