Interface
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:

cs-api-definition
public interface ICellImporter

Properties

ColumnIndex

Gets the zero-based column index of the cell within its worksheet.

Declaration

cs-api-definition
int ColumnIndex { get; }

Property Value

int

The index of the column.

Format

Gets the effective cell formatting (borders, font, alignment, number format, etc.).

Declaration

cs-api-definition
SpreadCellFormat Format { get; }

Property Value

SpreadCellFormat

The format.

FormulaValue

Gets the formula unparsed string value when the cell contains a formula.

Declaration

cs-api-definition
string FormulaValue { get; }

Property Value

string

The value.

RowIndex

Gets the zero-based row index of the cell within its worksheet.

Declaration

cs-api-definition
int RowIndex { get; }

Property Value

int

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

cs-api-definition
string Value { get; }

Property Value

string

The value.

ValueType

Gets the OOXML cell value type describing how to interpret the stored value.

Declaration

cs-api-definition
CellValueType ValueType { get; }

Property Value

CellValueType