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

GetNodeDisplayValueEventArgs Class

Provides data for the TreeList.GetNodeDisplayValue event.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

[Browsable(false)]
public class GetNodeDisplayValueEventArgs :
    CellValueChangedEventArgs

Remarks

The TreeList.GetNodeDisplayValue event allows you to display custom values within each individual cell of the TreeList control. The information about the cell being processed by the event handler can be obtained via the inherited NodeEventArgs.Node and CellEventArgs.Column properties of the GetNodeDisplayValueEventArgs. The GetNodeDisplayValueEventArgs.Value property gives you the ability to modify the display value of the processed cell.

Instances of the GetNodeDisplayValueEventArgs class are automatically created, modified and passed to TreeList.GetNodeDisplayValue event handlers.

See Also