Class
ColumnExportingEventArgs

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:

cs-api-definition
public class ColumnExportingEventArgs : EventArgs

Inheritance: objectEventArgsColumnExportingEventArgs

Inherited Members EventArgs.Empty

Constructors

ColumnExportingEventArgs(DataColumn, int)

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

Declaration

cs-api-definition
public ColumnExportingEventArgs(DataColumn dataColumn, int columnIndex)

Parameters

dataColumn

DataColumn

The column that is curently beeing exported.

columnIndex

int

The index of the column that is curently beeing exported.

Properties

ColumnIndex

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

Declaration

cs-api-definition
public int ColumnIndex { get; }

Property Value

int

DataColumn

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

Declaration

cs-api-definition
public DataColumn DataColumn { get; }

Property Value

DataColumn