ClassTextCellValue
Class
Cell value for plain text content without formatting; use for strings that should not be parsed as numbers or formulas.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
cs-api-definition
public class TextCellValue : CellValueBase<string>, ICellValue
Inheritance: objectCellValueBase<string>TextCellValue
Implements:
Inherited Members
Properties
RawValue
Text content stored in the cell.
Declaration
cs-api-definition
public override string RawValue { get; }
Property Value
The raw value.
Overrides
ValueType
Returns CellValueType.Text.
Declaration
cs-api-definition
public override CellValueType ValueType { get; }
Property Value
The type of the value.
Overrides
Methods
GetValueAsStringOverride(CellValueFormat)
Gets the value as string override.
Declaration
cs-api-definition
protected override string GetValueAsStringOverride(CellValueFormat format = null)
Parameters
format
The format.
Returns
Overrides