Skip to main content

TreeListCustomColumnSortEventArgs(ColumnBase, TreeListNode, TreeListNode, Object, Object) Constructor

Initializes a new instance of the TreeListCustomColumnSortEventArgs class.

Namespace: DevExpress.Xpf.Grid.TreeList

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public TreeListCustomColumnSortEventArgs(
    ColumnBase column,
    TreeListNode node1,
    TreeListNode node2,
    object value1,
    object value2
)

Parameters

Name Type Description
column ColumnBase

A ColumnBase descendant that is the column which contains the values to compare. This value is assigned to the TreeListCustomColumnSortEventArgs.Column property.

node1 TreeListNode

A TreeListNode object that is the first node. This value is assigned to the TreeListCustomColumnSortEventArgs.Node1 property.

node2 TreeListNode

A TreeListNode object that is the second node. This value is assigned to the TreeListCustomColumnSortEventArgs.Node2 property.

value1 Object

An object that is the first of the two values being compared. This value is assigned to the TreeListCustomColumnSortEventArgs.Value1 property.

value2 Object

An object that is the second of the two values being compared. This value is assigned to the TreeListCustomColumnSortEventArgs.Value2 property.

See Also