Enum
CellValueType

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:

cs-api-definition
public enum CellValueType

Fields

Boolean

Cell contains a boolean value (TRUE or FALSE).

Declaration

cs-api-definition
Boolean = 2

Field Value

CellValueType

Empty

Cell contains no content.

Declaration

cs-api-definition
Empty = 0

Field Value

CellValueType

Error

Cell contains an error value (#DIV/0!, #N/A, etc.).

Declaration

cs-api-definition
Error = 6

Field Value

CellValueType

Formula

Cell contains an expression that calculates dynamically.

Declaration

cs-api-definition
Formula = 3

Field Value

CellValueType

Number

Cell contains a numeric value.

Declaration

cs-api-definition
Number = 1

Field Value

CellValueType

RichText

Cell contains text with formatting (fonts, colors, styles).

Declaration

cs-api-definition
RichText = 5

Field Value

CellValueType

Text

Cell contains plain text.

Declaration

cs-api-definition
Text = 4

Field Value

CellValueType