CalculationData Class

CalculationData class

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


type CalculationData struct  {
	ptr unsafe.Pointer
}

Constructors

MethodDescription

Methods

MethodDescription
IsNullChecks whether the implementation object is nullptr.
GetCalculatedValueGets or sets the calculated value for this function.
SetCalculatedValueGets or sets the calculated value for this function.
GetWorkbookGets the Workbook object where the function is.
GetWorksheetGets the Worksheet object where the function is.
GetCellRowGets the row index of the cell where the function is.
GetCellColumnGets the column index of the cell where the function is.
GetCellGets the Cell object where the function is.
GetFunctionNameGets the function name to be calculated.
GetParamCountGets the count of parameters
GetParamValueGets the represented value object of the parameter at a given index.
GetParamValueInArrayModeGets the value(s) of the parameter at a given index.If the parameter is some kind of expression that needs to be calculated, then it will be calculated in array mode.
GetParamTextGets the literal text of the parameter at the given index.