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

SelectionMode Enum

Specifies the single/multiple element selection option (when in Customization Mode.)

Namespace: DevExpress.Xpf.Layout.Core

Assembly: DevExpress.Xpf.Layout.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Docking

#Declaration

public enum SelectionMode

#Members

Name Description
SingleItem

Selects in Customization Mode the only item specified via the DockLayoutManager.SelectItem method. If multiple DockLayoutManager.SelectItem methods were called, the last one’s item will be selected.

MultipleItems

Selects in Customization Mode multiple items specified via all the DockLayoutManager.SelectItem methods called.

ItemRange

Selects in Customization Mode all items in the range between the last selected item and an item specified as a parameter in the DockLayoutManager.SelectItem method.

#Remarks

Depending on the SelectionMode enumerator value passed to the DockLayoutManager.SelectItem method as a parameter, you can select either single or multiple items as you enter the Customization Mode. See these links to learn more.

See Also