API Reference
Class
ExcelCellData
A typed snapshot of a worksheet cell value.
Inheritance
- Object
- ExcelCellData
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
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
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.