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

CustomDrawNodeCellEventArgs.Column Property

Gets the painted cell’s column.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#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.

See Also