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