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
Name | Type | Description |
---|---|---|
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