Enum
CellValueType

Enumerates OOXML cell value types for interpreting and exporting raw cell content consistently with the spreadsheet specification.

Definition

Namespace:Telerik.Documents.SpreadsheetStreaming

Assembly:Telerik.Documents.SpreadsheetStreaming.dll

Syntax:

cs-api-definition
public enum CellValueType

Fields

Boolean

Boolean scalar (true / false) stored without localization.

Declaration

cs-api-definition
Boolean = 0

Field Value

CellValueType

Date

ISO-like serialized date/time value mapped through a date number format.

Declaration

cs-api-definition
Date = 1

Field Value

CellValueType

Error

Error code token (e.g. #DIV/0!) indicating a formula evaluation failure.

Declaration

cs-api-definition
Error = 2

Field Value

CellValueType

Formula

Formula expression stored for calculation.

Declaration

cs-api-definition
Formula = 7

Field Value

CellValueType

Number

Numeric (floating‑point) value subject to number formatting.

Declaration

cs-api-definition
Number = 4

Field Value

CellValueType

RichText

Inline rich text payload with formatting runs.

Declaration

cs-api-definition
RichText = 3

Field Value

CellValueType

SharedString

Shared string table reference used to de-duplicate repeated text.

Declaration

cs-api-definition
SharedString = 5

Field Value

CellValueType

Text

Plain text value.

Declaration

cs-api-definition
Text = 6

Field Value

CellValueType