Skip to main content
All docs
V23.2

SelectionChangingEventArgs.Action Property

Gets an action that describes how the collection of selected rows is about to change.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public CollectionChangeAction Action { get; }

Property Value

Type Description
CollectionChangeAction

Specifies how the collection of selected rows is about to change.

Remarks

This property can have one of the following values:

Action Property Value
A user selects a row (rows). CollectionChangeAction.Add
A user unselects a row (rows). CollectionChangeAction.Remove
See Also