AbstractCalculationEngine.IsParamArrayModeRequired

AbstractCalculationEngine.IsParamArrayModeRequired property

Indicates whether this engine needs the parameter to be calculated in array mode. Default value is false. If GetParamValueInArrayMode is required when calculating custom functions and user has not updated the definition for them (by UpdateCustomFunctionDefinition), this property needs to be set as true.

public virtual bool IsParamArrayModeRequired { get; }

Remarks

If this custom calculation engine needs the parameter to be calculated in array mode, more stacks will be required to cache the tree for parameters and Calculate() method may be called recursively to calculate the parameter’s value. For performance consideration, please keep this property as the default value(false) if there is no special requirement.

See Also