Back to Devexpress

ItemCheckMode Enum

windowsforms-devexpress-dot-xtrabars-dot-ribbon-dot-gallery-8e292388.md

latest2.7 KB
Original Source

ItemCheckMode Enum

Contains values that specify how gallery items can be selected.

Namespace : DevExpress.XtraBars.Ribbon.Gallery

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public enum ItemCheckMode
vb
Public Enum ItemCheckMode

Members

NameDescription
None

An item is not automatically checked on clicking.

| | SingleCheck |

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.

| | SingleRadio |

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

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

| | Multiple |

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

| | SingleCheckInGroup |

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.

| | SingleRadioInGroup |

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

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

| | MultipleInGroup |

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.

|

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.

See Also

ItemCheckMode

DevExpress.XtraBars.Ribbon.Gallery Namespace