Skip to main content
A newer version of this page is available. .

ObjectViewController<ViewType, ObjectType>.ViewSelectedObjects Property

Gets the list of selected objects (see View.SelectedObjects).

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

[Browsable(false)]
public IList<ObjectType> ViewSelectedObjects { get; }

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 InstantFeedback 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 XafInstantFeedbackRecord or XafDataViewRecord wrappers instead of business objects themselves.

See Also