Class ImportingCellFromExcelEventArgs
Importing event arguments
Inheritance
System.Object
ImportingCellFromExcelEventArgs
Namespace: Syncfusion.UI.Xaml.CellGrid.Converter
Assembly: Syncfusion.SfCellGrid.UWP.dll
Syntax
public class ImportingCellFromExcelEventArgs : EventArgs
Constructors
ImportingCellFromExcelEventArgs(IRange, IWorksheet, GridStyleInfo, Boolean, ImportMode)
Declaration
public ImportingCellFromExcelEventArgs(IRange range, IWorksheet sheet, GridStyleInfo cell, bool handled, ImportMode mode)
Parameters
Type | Name | Description |
---|---|---|
IRange | range | |
IWorksheet | sheet | |
GridStyleInfo | cell | |
System.Boolean | handled | |
ImportMode | mode |
Properties
Cell
Gets the importing styleinformation of each cell
Declaration
public GridStyleInfo Cell { get; set; }
Property Value
Type |
---|
GridStyleInfo |
Handled
gets or sets whether the importing event is handled or not
Declaration
public bool Handled { get; set; }
Property Value
Type |
---|
System.Boolean |
Mode
gets or sets the type of importing by default value
Declaration
public ImportMode Mode { get; set; }
Property Value
Type |
---|
ImportMode |
Range
Gets the importing range
Declaration
public IRange Range { get; }
Property Value
Type |
---|
IRange |
Sheet
Gets the importing worksheet
Declaration
public IWorksheet Sheet { get; }
Property Value
Type |
---|
IWorksheet |