Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CompareNodeValuesEventArgs.NodeValue2 Property

Gets the second value involved in comparison.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

public object NodeValue2 { get; }

#Property Value

Type Description
Object

An object representing the second value involved in comparison.

#Remarks

Use the NodeValue2 property to access the value which is to be compared with the value returned by the CompareNodeValuesEventArgs.NodeValue1 property. The result of comparing these values must be specified using the CompareNodeValuesEventArgs.Result property.

The nodes containing these values can be accessed via the CompareNodeValuesEventArgs.Node1 and CompareNodeValuesEventArgs.Node2 properties. Accessing nodes is useful if you want to implement more complex sorting than can be achieved by comparing two values. For instance, you can perform comparison with respect to values of several fields.

See Also