CalculationCell class

CalculationCell class

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

The CalculationCell type exposes the following members:

Properties

PropertyDescription
workbookGets the Workbook object.
worksheetGets the Worksheet object where the cell is in.
cell_rowGets the row index of the cell.
cell_columnGets the column index of the cell.
cellGets the Cell object which is being calculated.

Methods

MethodDescription
set_calculated_value(self, v)Sets the calculated value for the cell.

Remarks

User should not change any data in the Workbook during the formula calculation process, otherwise unexpected result or Exception may be caused. So, all objects provided by this class(such as the Cell object of CalculationCell.cell) are for “read” purpose only.

See Also