View.SelectionType Property
Returns the selection type supported by a View.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
public virtual SelectionType SelectionType { get; }
#Property Value
Type | Description |
---|---|
Selection |
A Selection |
Available values:
Name | Description |
---|---|
None | A List Editor or a View does not support focusing an object nor selection of objects. |
Focused |
A List Editor or a View supports focusing an object, but does not support selection of objects. |
Multiple |
A List Editor or a View supports selection of single and multiple objects. |
Temporary |
A List Editor or a View supports selection type, which is active only while a postback is processed. For instance, it can be active when a record displayed by an ASP. |
Full | A List Editor or a View supports selection of single and multiple objects, as well as focusing an object. |
#Remarks
The SelectionType property returns the SelectionType.None value, indicating that the selection is not supported. This property should be overridden in View class descendants. The ListView and DetailView classes specify this property in different ways (see ListView.SelectionType and DetailView.SelectionType).