ObjectViewController<ViewType, ObjectType>.ViewSelectedObjects Property
Gets the list of selected objects (see View.SelectedObjects).
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Property Value
Type | Description |
---|---|
IList<ObjectType> | A typed list or selected object. The object type is specified using the ObjectViewController<ViewType, ObjectType>‘s ObjectType generic parameter. |
Remarks
In the ServerView, InstantFeedback, InstantFeedbackView, and DataView Mode List View data access modes, reading this property value causes extra requests to the database for each selected object. If these requests are unwanted for performance reasons, use the View.SelectedObjects property which returns IObjectRecord wrappers instead of business objects themselves.
See Also