API Reference
Class
ExcelCellData
A typed snapshot of a worksheet cell value.
Inheritance
- Object
- ExcelCellData
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method ExcelCell.GetValue
Constructors
public ExcelCellData(ExcelCellDataKind kind, Object value, String formula = null, String cachedText = null) #Creates a snapshot for a worksheet cell value.
Parameters
- kind OfficeIMO.Excel.ExcelCellDataKind
- value System.Object
- formula System.String = null
- cachedText System.String = null
Inherited Methods
Properties
public ExcelCellDataKind Kind { get; } #Gets the value kind.
public Object Value { get; } #Gets the typed value when one is available.
public String Formula { get; } #Gets the formula text for formula cells.
public String CachedText { get; } #Gets the cached text from the cell value.
public Boolean IsBlank { get; } #Gets a value indicating whether the cell is blank.
public Boolean HasFormula { get; } #Gets a value indicating whether the cell contains a formula.