Class ErrorCellValue
Cell value for formula errors and invalid operations; stores error indicators like #DIV/0!, #REF!, #VALUE!, #N/A, #NAME?, #NUM!, and #NULL!.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ErrorCellValue : CellValueBase<string>, ICellValue
Fields
DivisionByZeroErrorCellValue
Error value #DIV/0! indicating division by zero.
Declaration
public static readonly ErrorCellValue DivisionByZeroErrorCellValue
Field Value
|
ErrorCellValue
|
NameErrorCellValue
Error value #NAME? indicating an unrecognized name in a formula.
Declaration
public static readonly ErrorCellValue NameErrorCellValue
Field Value
|
ErrorCellValue
|
NotAvailableErrorCellValue
Error value #N/A indicating a value is not available.
Declaration
public static readonly ErrorCellValue NotAvailableErrorCellValue
Field Value
|
ErrorCellValue
|
NullErrorCellValue
Error value #NULL! indicating an invalid intersection of ranges.
Declaration
public static readonly ErrorCellValue NullErrorCellValue
Field Value
|
ErrorCellValue
|
NumberErrorCellValue
Error value #NUM! indicating an invalid numeric value in a function.
Declaration
public static readonly ErrorCellValue NumberErrorCellValue
Field Value
|
ErrorCellValue
|
ReferenceErrorCellValue
Error value #REF! indicating an invalid cell reference.
Declaration
public static readonly ErrorCellValue ReferenceErrorCellValue
Field Value
|
ErrorCellValue
|
ValueErrorCellValue
Error value #VALUE! indicating an invalid value type for an operation.
Declaration
public static readonly ErrorCellValue ValueErrorCellValue
Field Value
|
ErrorCellValue
|
Properties
ValueType
Returns CellValueType.Error.
Declaration
public override CellValueType ValueType { get; }
Property Value
|
CellValueType
The type of the value. |