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

CustomDrawNodeCellEventArgs.Column Property

Gets the painted cell’s column.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public TreeListColumn Column { get; }

Property Value

Type Description
TreeListColumn

A TreeListColumn object representing the column that contains the painted cell.

Remarks

Use the Column property to identify the painted cell’s column. This can be used to perform different painting for different column cells or to perform custom painting for the desired column cells only. For this purpose you can use the CustomDrawEventArgs.Handled property.

You can also obtain the painted cell’s node via the Node property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Column property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also