Class XlsxFormulaCell
- Namespace
- DocToolkit
- Assembly
- DocToolkit.Xlsx.dll
One formula cell, as found by InspectFormulas(byte[]).
public sealed class XlsxFormulaCell
- Inheritance
-
XlsxFormulaCell
- Inherited Members
Properties
CellReference
The cell's A1-style reference, such as C1.
public string CellReference { get; }
Property Value
Formula
The formula text, without a leading = — see Formula.
public string Formula { get; }
Property Value
IsSupported
Whether the underlying engine understands this formula. false means any value read for this cell — through this package's own readers or any other tool — is not something anything here computed; treat it as absent rather than as a number to trust.
public bool IsSupported { get; }
Property Value
SheetName
The sheet the formula lives on.
public string SheetName { get; }
Property Value
UnsupportedReason
Why IsSupported is false. null when the formula is supported.
public string? UnsupportedReason { get; }