Class ColumnExportingEventArgs
Provides data for the ColumnExporting event, raised for each column during DataTable export.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.FormatProviders
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ColumnExportingEventArgs : EventArgs
Constructors
ColumnExportingEventArgs(DataColumn, Int32)
Initializes a new instance of the ColumnExportingEventArgs class with the column being exported.
Declaration
public ColumnExportingEventArgs(DataColumn dataColumn, int columnIndex)
Parameters
|
System.Data.DataColumn
dataColumn
The column that is curently beeing exported. |
|
System.Int32
columnIndex
The index of the column that is curently beeing exported. |
Properties
ColumnIndex
Gets the zero-based index of the column being exported.
Declaration
public int ColumnIndex { get; }
Property Value
|
System.Int32
|
DataColumn
Gets the DataColumn currently being exported, allowing modification of column properties during export.
Declaration
public DataColumn DataColumn { get; }
Property Value
|
System.Data.DataColumn
|