New to Telerik Document ProcessingStart a free 30-day trial

Implements the CEILING.PRECISE function, which rounds a number up to the nearest integer or multiple of significance regardless of sign.

Definition

Constructors

Initializes a new CEILING.PRECISE function instance for rounding numbers up with absolute significance, treating both positive and negative numbers uniformly.

C#
public CeilingPrecise()

Fields

The name of the function.

C#
public static readonly string FunctionName

Methods

Evaluates the precise ceiling of the number using the specified significance and returns the result or an error if the value exceeds supported limits.

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