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

GetNodeDisplayValueEventArgs.Value Property

Gets or sets the value contained within the processed cell.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public override object Value { get; set; }

Property Value

Type Description
Object

An object representing the processed cell’s value.

Remarks

Use the Value property to modify the display value of a cell as a result of certain conditions. The node and column to which the processed cell belongs can be determined via the NodeEventArgs.Node and CellEventArgs.Column properties.

If you handle the TreeList.CustomDrawNodeCell event, you can override cell value modifications performed in a TreeList.GetNodeDisplayValue event handler. Moreover, you can paint anything you like within desired cells.

See Also