Namespace:DevExpress.Xpf.Grid.TreeList
Assembly:DevExpress.Xpf.Grid.v19.2.dll

Syntax
C# |
public TreeListCustomColumnSortEventArgs(
ColumnBase column,
TreeListNode node1,
TreeListNode node2,
object value1,
object value2
)
|
VB |
Public New(
ByVal column As ColumnBase,
ByVal node1 As TreeListNode,
ByVal node2 As TreeListNode,
ByVal value1 As Object,
ByVal value2 As Object
)
|
Parameters
-
column
-
Type: ColumnBase
A ColumnBase descendant that is the column which contains the values to compare. This value is assigned to the Column property.
-
node1
-
Type: TreeListNode
A TreeListNode object that is the first node. This value is assigned to the Node1 property.
-
node2
-
Type: TreeListNode
A TreeListNode object that is the second node. This value is assigned to the Node2 property.
-
value1
-
Type: Object
An object that is the first of the two values being compared. This value is assigned to the Value1 property.
-
value2
-
Type: Object
An object that is the second of the two values being compared. This value is assigned to the Value2 property.

See Also