Aspose::Cells::CalculationData class

CalculationData class

Represents the required data when calculating one function, such as function name, parameters, …etc.

class CalculationData

Methods

MethodDescription
CalculationData(CalculationData_Impl* impl)Constructs from an implementation object.
CalculationData(const CalculationData& src)Copy constructor.
GetCell()Gets the Cell object where the function is in.
GetCellColumn()Gets the column index of the cell where the function is in.
GetCellRow()Gets the row index of the cell where the function is in.
GetFunctionName()Gets the function name to be calculated.
GetParamCount()Gets the count of parameters.
GetParamText(int32_t index)Gets the literal text of the parameter at given index.
GetWorkbook()Gets the Workbook object where the function is in.
GetWorksheet()Gets the Worksheet object where the function is in.
IsNull() constChecks whether the implementation object is nullptr.
explicit operator bool() constoperator bool()
operator=(const CalculationData& src)operator=
~CalculationData()Destructor.

Fields

FieldDescription
_implThe implementation object.

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