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

CompareNodeValuesEventArgs.Node2 Property

Gets the node containing the second value involved in comparison.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

public TreeListNode Node2 { get; }

Property Value

Type Description
TreeListNode

A TreeListNode object representing the node that contains the second value involved in comparison.

Remarks

Use the Node2 property to access the properties or data of the second node involved in comparison. The first node can be accessed via the CompareNodeValuesEventArgs.Node1 property. Accessing these nodes enables you to implement more complex sorting algorithms than comparing two values of the column being sorted. For instance, you may want to perform sorting based on values of several columns.

See Also