Class CalculationCell

CalculationCell class

Represents the calculation relevant data about one cell which is being calculated.

public class CalculationCell

Properties

NameDescription
Cell { get; }Gets the Cell object which is being calculated.
CellColumn { get; }Gets the column index of the cell.
CellRow { get; }Gets the row index of the cell.
Workbook { get; }Gets the Workbook object.
Worksheet { get; }Gets the Worksheet object where the cell is in.

Methods

NameDescription
SetCalculatedValue(object)Sets the calculated value for the cell.

Remarks

All objects provided by this class are for “read” purpose only. User should not change any data in the Workbook during the formula calculation process, Otherwise unexpected result or Exception may be caused.

See Also