CellValueType
Enum
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:
C#
public enum CellValueType
Fields
Boolean scalar (true / false) stored without localization.
C#
Boolean = 0
ISO-like serialized date/time value mapped through a date number format.
C#
Date = 1
Error code token (e.g. #DIV/0!) indicating a formula evaluation failure.
C#
Error = 2
Formula expression stored for calculation.
C#
Formula = 7
Numeric (floating‑point) value subject to number formatting.
C#
Number = 4
Inline rich text payload with formatting runs.
C#
RichText = 3
Shared string table reference used to de-duplicate repeated text.
C#
SharedString = 5
Plain text value.
C#
Text = 6