New to Telerik Document ProcessingStart a free 30-day trial

Product

Class

Multiplies all numeric arguments and returns the product, accepting up to 255 arguments including ranges.

Definition

Constructors

Initializes a new PRODUCT function that multiplies all numeric arguments.

C#
public Product()

Fields

The name of the function.

C#
public static readonly string FunctionName

Methods

Evaluates the PRODUCT function and returns the product of all numeric arguments.

C#
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters:contextFunctionEvaluationContext<double>

The context.

Returns:

RadExpression

Functions result as RadExpression.

Overrides: FunctionWithSameTypeArguments<double>.EvaluateOverride(FunctionEvaluationContext<double>)

Properties

Conversion rules specifying that the function ignores non-numeric values from ranges while processing direct arguments.

C#
public override ArgumentConversionRules ArgumentConversionRules { get; }
Property Value:

The argument conversion rules as ArgumentConversionRules.

Overrides: NumbersInFunction.ArgumentConversionRules

Metadata describing the function signature, category, and argument requirements.

C#
public override FunctionInfo FunctionInfo { get; }
Property Value:

The function info as FunctionInfo.

Overrides: FunctionBase.FunctionInfo

The function name "PRODUCT" as it appears in spreadsheet formulas.

C#
public override string Name { get; }
Property Value:

The name as String.

Overrides: FunctionBase.Name