Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Int32 CeilToInt(Double X) | Round towards positive infinity. |
| 2 | Int32 CeilToIntf(Single X) |
Overload 1: Int32 CeilToInt(Double X)
Round towards positive infinity.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | scalar |
Returns: Int32 - the smallest integer rounded real greater than or equal to X. Ceil(-2.8) = -2 Ceil(2.8) = 3 Ceil(-1.0) = -1
See Also: Math387.Floor
Overload 2: Int32 CeilToIntf(Single X)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | scalar |
Returns: Int32