DetailView.SelectionType Property
Returns the selection type supported by the current Detail View.
Namespace: DevExpress.ExpressApp
Assembly:
DevExpress.ExpressApp.v24.1.dll
Declaration
public override SelectionType SelectionType { get; }
Public Overrides ReadOnly Property SelectionType As SelectionType
Property Value
Type |
Description |
SelectionType |
A SelectionType enumeration value representing the selection type supported by the current Detail View.
|
Available values:
Name |
Description |
None
|
A List Editor or a View does not support focusing an object nor selection of objects.
|
FocusedObject
|
A List Editor or a View supports focusing an object, but does not support selection of objects.
|
MultipleSelection
|
A List Editor or a View supports selection of single and multiple objects.
|
TemporarySelection
|
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.NET Web Forms List editor is clicked.
|
Full
|
A List Editor or a View supports selection of single and multiple objects, as well as focusing an object.
|
The SelectionType property returns the SelectionType.FocusedObject value, indicating that the DetailView can only have a single selected object represented by the currently focused object.
See Also