Interface ICellImporter
Exposes positional data, value, and formatting for a cell being streamed in from an existing worksheet.
Namespace: Telerik.Documents.SpreadsheetStreaming
Assembly: Telerik.Documents.SpreadsheetStreaming.dll
Syntax
public interface ICellImporter
Properties
ColumnIndex
Gets the zero-based column index of the cell within its worksheet.
Declaration
int ColumnIndex { get; }
Property Value
|
System.Int32
The index of the column. |
Format
Gets the effective cell formatting (borders, font, alignment, number format, etc.).
Declaration
SpreadCellFormat Format { get; }
Property Value
|
SpreadCellFormat
The format. |
FormulaValue
Gets the formula unparsed string value when the cell contains a formula.
Declaration
string FormulaValue { get; }
Property Value
|
System.String
The value. |
RowIndex
Gets the zero-based row index of the cell within its worksheet.
Declaration
int RowIndex { get; }
Property Value
|
System.Int32
The index of the row. |
Value
Gets the raw stored value string for the cell. If the cell contains a formula, this is the cached result value.
Declaration
string Value { get; }
Property Value
|
System.String
The value. |
ValueType
Gets the OOXML cell value type describing how to interpret the stored value.
Declaration
CellValueType ValueType { get; }
Property Value
|
CellValueType
|