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

TreeList.GetNodeDisplayValue Event

Allows you to display custom values within cells. This event is obsolete. Use the TreeList.CustomColumnDisplayText event instead.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public event GetNodeDisplayValueEventHandler GetNodeDisplayValue

#Event Data

The GetNodeDisplayValue event's data class is GetNodeDisplayValueEventArgs. The following properties provide information specific to this event:

Property Description
ChangedByUser Gets whether the user changed the value in an editor, or the value is changed in code. Inherited from CellValueChangedEventArgs.
Column Gets a column to which the cell processed by an event belongs. Inherited from CellEventArgs.
Node Gets the current Tree List node. Inherited from NodeEventArgs.
OldValue Inherited from CellValueChangedEventArgs.
Value Gets or sets the value contained within the processed cell.

#Remarks

This event is obsolete. Use the TreeList.CustomColumnDisplayText event instead.

See Also