Skip to main content

FocusedColumnChangedEventArgs(TreeListColumn, TreeListColumn) Constructor

Creates an instance of the FocusedColumnChangedEventArgs class.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public FocusedColumnChangedEventArgs(
    TreeListColumn column,
    TreeListColumn oldColumn
)

Parameters

Name Type Description
column TreeListColumn

A TreeListColumn object representing the currently focused column. null (Nothing in Visual Basic) if none of the columns is currently focused. This value is assigned to the ColumnChangedEventArgs.Column property.

oldColumn TreeListColumn

A TreeListColumn object representing the previously focused column. null (Nothing in Visual Basic) if none of the columns was previously focused. This value is assigned to the FocusedColumnChangedEventArgs.OldColumn property.

Remarks

Instances of the FocusedColumnChangedEventArgs class are automatically created, modified and passed to TreeList.FocusedColumnChanged event handlers.

See Also