Skip to main content

FocusedRowChangedEventArgs(DataViewBase, Object, Object) Constructor

Initializes a new instance of the FocusedRowChangedEventArgs class.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public FocusedRowChangedEventArgs(
    DataViewBase source,
    object oldRow,
    object newRow
)

Parameters

Name Type Description
source DataViewBase

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

oldRow Object

The previously focused row. This value is assigned to the FocusedRowChangedEventArgs.OldRow property.

newRow Object

The focused row. This value is assigned to the FocusedRowChangedEventArgs.NewRow property.

See Also