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

ItemCheckMode Enum

Contains values that specify how gallery items can be selected.

Namespace: DevExpress.XtraBars.Ribbon.Gallery

Assembly: DevExpress.XtraBars.v18.1.dll

Declaration

public enum ItemCheckMode

Members

Name Description

An item is not automatically checked on clicking.

Only a single item can be checked throughout the gallery. When checking another item, the previously checked item is unchecked.

A checked item can be unchecked when clicking on it again.

The same as the ItemCheckMode.SingleCheck option, except the following:

A checked item is NOT unchecked when clicking on it again.

Multiple items can be checked , by clicking them while holding the CTRL/SHIFT key.

An end-user can check a single item within each group. When checking another item, the previously checked item in the same group is unchecked.

A checked item can be unchecked when clicking on it again.

The same as the ItemCheckMode.SingleCheckInGroup option, except the following:

A checked item is NOT unchecked when clicking on it again.

Multiple items can be checked, but only within a single group. Checking any item within another group, unchecks items in the previous group.

To select multiple items, click them while holding the CTRL/SHIFT key.

Related API Members

The following properties accept/return ItemCheckMode values:

Remarks

Use the BaseGallery.ItemCheckMode property to specify whether multiple item selection is enabled, and how gallery items can be checked/selected.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ItemCheckMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also