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

IndexChangedEventArgs(Int32, Int32) Constructor

Creates a new IndexChangedEventArgs object.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

public IndexChangedEventArgs(
    int newIndex,
    int oldIndex
)

Parameters

Name Type Description
newIndex Int32

A zero-based integer representing the index of the currently focused element. This value is assigned to the IndexChangedEventArgs.NewIndex property.

oldIndex Int32

A zero-based integer representing the index of the previously focused element. This value is assigned to the IndexChangedEventArgs.OldIndex property.

See Also