ClassCellImportedEventArgs
Provides data for the CellImported event, raised after each cell is imported from a DataTable to a worksheet.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.FormatProviders
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class CellImportedEventArgs : EventArgs
Inheritance: objectEventArgsCellImportedEventArgs
Inherited Members
Constructors
CellImportedEventArgs(int, int, int, int, Worksheet)
Initializes a new instance of the CellImportedEventArgs class with the source and destination cell coordinates.
Declaration
public CellImportedEventArgs(int dataTableRowIndex, int dataTableColumnIndex, int worksheetRowIndex, int worksheetColumnIndex, Worksheet worksheet)
Parameters
dataTableRowIndex
The index of the row in the DataTable containing the cell that the event occurs for.
dataTableColumnIndex
The index of the column in the DataTable containing the cell that the event occurs for.
worksheetRowIndex
The index of the row in the Worksheet containing the cell that the event occurs for.
worksheetColumnIndex
The index of the column in the Worksheet containing the cell that the event occurs for.
worksheet
The worksheet where the data is imported.
Properties
DataTableColumnIndex
Gets the zero-based column index in the source DataTable for the imported cell.
DataTableRowIndex
Gets the zero-based row index in the source DataTable for the imported cell.
Worksheet
Gets the worksheet instance receiving the imported data.
WorksheetColumnIndex
Gets the zero-based column index in the destination worksheet where the cell was imported.
WorksheetRowIndex
Gets the zero-based row index in the destination worksheet where the cell was imported.