asposecells.api

Class CalculationCell

Represents the calculation relevant data about one cell which is being calculated.
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.

Property Getters/Setters Summary
methodgetCell()
Gets the Cell object which is being calculated.
methodgetCellColumn()
Gets the column index of the cell.
methodgetCellRow()
Gets the row index of the cell.
methodgetWorkbook()
Gets the Workbook object.
methodgetWorksheet()
Gets the Worksheet object where the cell is in.
 
Method Summary
methodsetCalculatedValue(v)
Sets the calculated value for the cell.
 

    • Property Getters/Setters Detail

      • getWorksheet : Worksheet 

        Worksheet getWorksheet()
        
        Gets the Worksheet object where the cell is in.
      • getCellRow : int 

        int getCellRow()
        
        Gets the row index of the cell.
      • getCellColumn : int 

        int getCellColumn()
        
        Gets the column index of the cell.
      • getCell : Cell 

        Cell getCell()
        
        Gets the Cell object which is being calculated.
    • Method Detail

      • setCalculatedValue

         setCalculatedValue(v)
        Sets the calculated value for the cell. User can set the calculated result by this method to ignore the automatic calculation for the cell.