ClassProduct
Multiplies all numeric arguments and returns the product, accepting up to 255 arguments including ranges.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Product : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionProduct
Inherited Members
Constructors
Product()
Initializes a new PRODUCT function that multiplies all numeric arguments.
Declaration
public Product()
Fields
FunctionName
The name of the function.
Properties
ArgumentConversionRules
Conversion rules specifying that the function ignores non-numeric values from ranges while processing direct arguments.
Declaration
public override ArgumentConversionRules ArgumentConversionRules { get; }
Property Value
The argument conversion rules as ArgumentConversionRules.
Overrides
FunctionInfo
Metadata describing the function signature, category, and argument requirements.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<double>)
Evaluates the PRODUCT function and returns the product of all numeric arguments.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides