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

CustomDrawColumnHeaderEventArgs.ColumnInfo Property

Gets an object containing information about the painted element.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public ColumnInfo ColumnInfo { get; }

Property Value

Type Description
DevExpress.XtraTreeList.ViewInfo.ColumnInfo

A DevExpress.XtraTreeList.ViewInfo.ColumnInfo object providing information about the painted element.

Remarks

The ColumnInfo property can be used to:

  • obtain the painted element’s settings and custom paint based on these settings;
  • pass the ColumnInfo property value to the DrawObject method of the object returned by the CustomDrawEventArgs.Painter property. This will paint the element using the default mechanism. Thus, you can provide a default appearance for the painted elements and simply perform additional painting within them;
  • change the DevExpress.XtraTreeList.ViewInfo.ColumnInfo object’s properties. In this instance, you can leave the CustomDrawEventArgs.Handled property set to false thus forcing default painting, but with modified settings.
See Also