CellValueType
Enum
Cell value types indicating the content category (empty, number, text, formula, boolean, rich text, or error).
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public enum CellValueType
Fields
Cell contains a boolean value (TRUE or FALSE).
C#
Boolean = 2
Cell contains no content.
C#
Empty = 0
Cell contains an error value (#DIV/0!, #N/A, etc.).
C#
Error = 6
Cell contains an expression that calculates dynamically.
C#
Formula = 3
Cell contains a numeric value.
C#
Number = 1
Cell contains text with formatting (fonts, colors, styles).
C#
RichText = 5
Cell contains plain text.
C#
Text = 4