Skip to main content
.NET 6.0+

SchedulerListEditorBase.SelectionType Property

Returns the selection type supported by the SchedulerListEditorBase.

Namespace: DevExpress.ExpressApp.Scheduler

Assembly: DevExpress.ExpressApp.Scheduler.v23.2.dll

Declaration

public override SelectionType SelectionType { get; }

Property Value

Type Description
SelectionType

A SelectionType enumeration value that represents the selection type supported by the current List Editor.

Remarks

Scheduler List Editors support selection of single and multiple objects. The SelectionType property always returns SelectionType.Full.

XAF uses this property to determine what Actions should be enabled for a List View. Each Action has the ActionBase.SelectionDependencyType property that specifies whether the Action’s availability depends on the current selection. XAF compares the Action’s SelectionDependencyType property value with the List Editor‘s SelectionType property value. If an Action requires a selected object and the current List Editor does not support selection, the Action is not available.

See Also