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

FocusedColumnChangedEventArgs(GridColumn, GridColumn) Constructor

Creates a new FocusedColumnChangedEventArgs object.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public FocusedColumnChangedEventArgs(
    GridColumn prevFocusedColumn,
    GridColumn focusedColumn
)

Parameters

Name Type Description
prevFocusedColumn GridColumn

A GridColumn object representing the previously focused column. This value is assigned to the FocusedColumnChangedEventArgs.PrevFocusedColumn property.

focusedColumn GridColumn

A GridColumn object representing the currently focused column. This value is assigned to the FocusedColumnChangedEventArgs.FocusedColumn property.

See Also