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

TreeListCustomColumnDisplayTextEventArgs(TreeListNode, ColumnBase, Object, String) Constructor

Initializes a new instance of the TreeListCustomColumnDisplayTextEventArgs class.

Namespace: DevExpress.Xpf.Grid.TreeList

Assembly: DevExpress.Xpf.Grid.v18.2.dll

Declaration

public TreeListCustomColumnDisplayTextEventArgs(
    TreeListNode node,
    ColumnBase column,
    object value,
    string displayText
)

Parameters

Name Type Description
node TreeListNode

A TreeListNode object that specifies the node in which the processed cell resides. This value is assigned to the TreeListCustomColumnDisplayTextEventArgs.Node property.

column ColumnBase

A ColumnBase object that specifies the column to which the processed cell belongs. This value is assigned to the TreeListCustomColumnDisplayTextEventArgs.Column property.

value Object

An object that is the value of the processed cell. This value is assigned to the TreeListCustomColumnDisplayTextEventArgs.Value property.

displayText String

A String value that specifies the cell’s display text. This value is assigned to the TreeListCustomColumnDisplayTextEventArgs.DisplayText property.

See Also