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.

WebMapsListEditor.SelectionType Property

Returns the selection type supported by the WebMapsListEditor.

Namespace: DevExpress.ExpressApp.Maps.Web

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

NuGet Package: DevExpress.ExpressApp.Maps.Web

Declaration

public override SelectionType SelectionType { get; }

Property Value

Type Description
SelectionType

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

Remarks

The WebMapsListEditor selection is active only while a postback is processed (when a marker is clicked on the map). So, the SelectionType property always 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