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

SelectionChangedEventArgs.Action Property

Gets an action which describes how the collection has been changed.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v19.1.dll

Declaration

public CollectionChangeAction Action { get; }

Property Value

Type Description
CollectionChangeAction

A CollectionChangeAction enumeration value which specifies how the collection has been changed.

Remarks

This property can have one of the following values:

Action Property Value
An element was added to the collection. CollectionChangeAction.Add
An element was removed from the collection. CollectionChangeAction.Remove
The collection was completely changed. CollectionChangeAction.Refresh

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Action property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also