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

SelectionMode Enum

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

Namespace: DevExpress.Xpf.Layout.Core

Assembly: DevExpress.Xpf.Layout.v19.1.Core.dll

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