New to Telerik Document ProcessingStart a free 30-day trial

ICellImporter

Interface

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:

C#
public interface ICellImporter

Properties

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

C#
int ColumnIndex { get; }
Property Value:

The index of the column.

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

C#
SpreadCellFormat Format { get; }
Property Value:

The format.

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

C#
string FormulaValue { get; }
Property Value:

The value.

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

C#
int RowIndex { get; }
Property Value:

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.

C#
string Value { get; }
Property Value:

The value.

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

C#
CellValueType ValueType { get; }