Skip to main content

CeilOperator

Type

operator

Summary

Returns the ceiling of Target.

Syntax

the ceiling of <Target>

Description

The ceiling of Target is the least integer greater than or equal to Target.

Parameters

NameTypeDescription

Target

An expression that evaluates to a number.

Examples

variable tNum as Number
variable tCeiling as Number
put -5.5 into tNum
put the ceiling of tNum into tCeiling -- tCeiling contains -5
Thank you for your feedback!

Was this page helpful?