New to Telerik Document ProcessingStart a free 30-day trial

Provides data for the ColumnExporting event, raised for each column during DataTable export.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.FormatProviders

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public class ColumnExportingEventArgs : EventArgs

Inheritance: objectEventArgsColumnExportingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ColumnExportingEventArgs class with the column being exported.

C#
public ColumnExportingEventArgs(DataColumn dataColumn, int columnIndex)
Parameters:dataColumnDataColumn

The column that is curently beeing exported.

columnIndexint

The index of the column that is curently beeing exported.

Properties

Gets the zero-based index of the column being exported.

C#
public int ColumnIndex { get; }

Gets the DataColumn currently being exported, allowing modification of column properties during export.

C#
public DataColumn DataColumn { get; }