Stack of instances used to evaluate formulas.
Inheritance
object
Constructors
Section titled "Constructors"constructor
public ExcelCalcNumberStack() Returns ExcelCalcNumberStack
Properties
Section titled "Properties"OwningCell
Section titled "OwningCell"Gets the instance whose formula is currently being solved.
public WorksheetCell OwningCell { get; } Methods
Section titled "Methods"Clear()
Section titled "Clear()"Remove all values from number stack.
public void Clear() Returns any
Count()
Section titled "Count()"Return the number of values on number stack
public int Count() Returns any
Peek()
Section titled "Peek()"Return value off top of the number stack.
public ExcelCalcValue Peek() Returns any
Pop()
Section titled "Pop()"Pop value off top of the number stack.
public ExcelCalcValue Pop() Returns any
Push(ExcelCalcValue)
Section titled "Push(ExcelCalcValue)"Push a value onto number stack.
public void Push(ExcelCalcValue value) Parameters
- value:
ExcelCalcValue
Returns any
Reset(int)
Section titled "Reset(int)"Clear elements off top of number stack until it contains given number of elements
public void Reset(int elements) Parameters
- elements:
int