Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

SimpleActionExecuteEventArgs.SelectedObjects Property

Provides access to the objects selected in the currently invoked View.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v21.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public IList SelectedObjects { get; }

Property Value

Type Description
IList

A list of objects that are selected in the current View.

Remarks

Simple Actions, like other Actions, accompany Views. When handling the Simple Action’s SimpleAction.Execute event, you can access the selected objects of the View which is accompanied by this Action. To do this, use the SelectedObjects property.

Note

If a Simple Action accompanies a Detail VIew, the SelectedObjects property returns the View’s current object.

For additional information, refer to the How to: Access Objects Selected in the Current View help topic.

See Also