Class CellImportedEventArgs
This class contains the arguments for the CellImported event of the DataTableFormatProvider.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.FormatProviders
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class CellImportedEventArgs : EventArgs
Constructors
CellImportedEventArgs(Int32, Int32, Int32, Int32, Worksheet)
Initializes a new instance of the CellImportedEventArgs class.
Declaration
public CellImportedEventArgs(int dataTableRowIndex, int dataTableColumnIndex, int worksheetRowIndex, int worksheetColumnIndex, Worksheet worksheet)
Parameters
System.Int32
dataTableRowIndex
The index of the row in the DataTable containing the cell that the event occurs for. |
System.Int32
dataTableColumnIndex
The index of the column in the DataTable containing the cell that the event occurs for. |
System.Int32
worksheetRowIndex
The index of the row in the Worksheet containing the cell that the event occurs for. |
System.Int32
worksheetColumnIndex
The index of the column in the Worksheet containing the cell that the event occurs for. |
Worksheet
worksheet
The worksheet where the data is imported. |
Properties
DataTableColumnIndex
Gets the index of the column in the DataTable containing the cell that the event occurs for.
Declaration
public int DataTableColumnIndex { get; }
Property Value
System.Int32
|
DataTableRowIndex
Gets the index of the row in the DataTable containing the cell that the event occurs for.
Declaration
public int DataTableRowIndex { get; }
Property Value
System.Int32
|
Worksheet
Gets the worksheet where the data is imported.
Declaration
public Worksheet Worksheet { get; }
Property Value
Worksheet
|
WorksheetColumnIndex
Gets the index of the column in the Worksheet containing the cell that the event occurs for.
Declaration
public int WorksheetColumnIndex { get; }
Property Value
System.Int32
|
WorksheetRowIndex
Gets the index of the row in the Worksheet containing the cell that the event occurs for.
Declaration
public int WorksheetRowIndex { get; }
Property Value
System.Int32
|