Skip to main content
A newer version of this page is available. .

RepositoryItemCheckedComboBoxEdit.HotTrackItems Property

Gets or sets whether item hot-tracking is enabled in the CheckedListBoxControl embedded in the dropdown window.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(false)]
public bool HotTrackItems { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if the item hot-tracking is enabled; otherwise, false.

Remarks

Note

The CheckedListBoxControl embedded in the dropdown window is used to toggle item check states. The control also supports the item selection feature, which allows for the visual highlighting (selection) of one or more items. When one or more items are selected, you can toggle the check states of all selected items at once by pressing the SPACE key or clicking a check box of any selected item.

Dedicated options provided by the RepositoryItemCheckedComboBoxEdit class allow you to enable the item hot-tracking feature and then activate/deactivate automatic item selection on hot-tracking.

To learn more about the difference between the item states, see the Checked States vs. Selection vs. Hot-Tracking section in the CheckedListBoxControl topic.

Note

Item hot-tracking is forcibly disabled in multiple item selection mode. See RepositoryItemCheckedComboBoxEdit.AllowMultiSelect.

If item hot-tracking is enabled, items in the embedded CheckedListBoxControl are hot-tracked when end-users hover over them. You can enable or disable automatic selection of a hot-tracked item. To learn more, see the RepositoryItemCheckedComboBoxEdit.HotTrackSelectMode property description.

See Also