New to Telerik Document ProcessingStart a free 30-day trial

Ceiling

Class

Implements the CEILING function, which rounds a number up to the nearest multiple of a specified significance.

Definition

Constructors

Initializes a new CEILING function instance for rounding numbers up to the nearest multiple of a specified significance.

C#
public Ceiling()

Fields

The name of the function.

C#
public static readonly string FunctionName

Methods

Evaluates the ceiling of the number using the specified significance and returns the result or an error if the arguments are invalid.

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

Gets metadata describing the function's signature, category, and arguments.

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

The function info as FunctionInfo.

Overrides: FunctionBase.FunctionInfo

Gets the function name used in formulas.

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

The name as String.

Overrides: FunctionBase.Name