Skip to main content

CustomizeCellEventArgsExtended.Column Property

Allows you to get information on the currently processed column object.

Namespace: DevExpress.Export

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public IColumn Column { get; set; }

Property Value

Type Description
DevExpress.XtraExport.Helpers.IColumn

The currently processed column object.

Remarks

The Column property allows you to get details on the currently processed column object. Instances of different classes are passed as the Column event parameter in different DevExpress controls (see the table below). You may type cast the Column property value to a corresponding class to obtain more information on the column being processed.

Control Column Objects
Windows Forms GridControl ColumnImplementer, BandedGridColumnImplementer, GridBandImplementer
Windows Forms TreeList TreeListColumnImplementer, TreeListBandedColumnImplementer, TreeListBandImplementer
Windows Forms PivotGridControl PivotColumnImplementer
WPF GridControl, TreeListControl ColumnWrapper, BandedColumnWrapper, BandWrapper
ASP ASPxGridView GridXlsExportColumn, GridXlsExportBandedColumn, GridXlsExportBandColumn
See Also