Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET 6.0+ platform documentation. This link will take you to the parent topic of the current section.

ASPxGridListEditor.SelectionType Property

Returns the selection type supported by the ASPxGridListEditor.

Namespace: DevExpress.ExpressApp.Web.Editors.ASPx

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

NuGet Package: DevExpress.ExpressApp.Web

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

If the ASPxGridListEditor.CanSelectRows property is set to true, the SelectionType property returns SelectionType.MultipleSelection. If the CanSelectRows property is set to false, the SelectionType property returns SelectionType.TemporarySelection.

This property is used by XAF to determine what Actions to enable for a List View. Each Action has the ActionBase.SelectionDependencyType property that specifies whether an Action’s availability depends on the current selection. XAF determines what actions to enable for a List View by comparing the value of the Action’s SelectionDependencyType property with the List Editor‘s SelectionType property value. For instance, if an Action requires a selected object and the current List Editor does not support selection, the Action will not be available.

See Also