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

GridSelectionChangedEventArgs(DataViewBase, CollectionChangeAction, Int32) Constructor

Initializes a new instance of the GridSelectionChangedEventArgs class.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.Core.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public GridSelectionChangedEventArgs(
    DataViewBase view,
    CollectionChangeAction action,
    int controllerRow
)

Parameters

Name Type Description
view DataViewBase

A DataViewBase descendant that is the view that raised the event.

action CollectionChangeAction

A CollectionChangeAction enumeration value that specifies how the grid’s selection has been changed. This value is assigned to the GridSelectionChangedEventArgs.Action property.

controllerRow Int32

An integer value that specifies the handle of the row whose selected state has been changed. This value is assigned to the GridSelectionChangedEventArgs.ControllerRow property.

See Also