ClassRate
Implements the RATE financial function that calculates the interest rate per period for an annuity using iterative approximation.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Rate : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionRate
Inherited Members
Constructors
Rate()
Initializes a new RATE function instance for calculating interest rate per period using iterative methods with configurable guess value.
Declaration
public Rate()
Fields
FunctionName
Function name identifier for the RATE function.
Properties
FunctionInfo
Metadata describing the function's signature, arguments, and return format for use by the expression evaluator.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<double>)
Virtual method evaluating the function with System.Object arguments array.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides