ICellValue
Interface
Contract for all cell value implementations providing access to content, type, and formatted display.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public interface ICellValue
Derived Classes:
Methods
Converts the evaluated result to a formatted string; for formulas, this evaluates the expression first.
C#
string GetResultValueAsString(CellValueFormat format)
The format.
Returns:Converts the raw value to a formatted string for display or editing.
C#
string GetValueAsString(CellValueFormat format)
The format.
Returns:Properties
Unformatted value as it was originally entered or stored.
C#
string RawValue { get; }
The raw value.
Type of the evaluated result; for formulas, this is the type of the calculated result rather than Formula.
C#
CellValueType ResultValueType { get; }
The type of the result value.
Category of the cell's content (Empty, Number, Text, Formula, Boolean, RichText, or Error).
C#
CellValueType ValueType { get; }
The type of the value.