Platforms to show: All Mac Windows Linux Cross-Platform

Back to BiggerNumberMBS class.

BiggerNumberMBS.Ceil as BiggerNumberMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 21.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
This function returns a value representing the smallest integer that is greater than or equal to x.
Example
Var c As New BiggerNumberMBS(-3.7)
Var d As BiggerNumberMBS = c.Ceil

MsgBox d // shows -3

e.g.
Ceil(-3.7) = -3
Ceil(-3.1) = -3
Ceil(-3.0) = -3
Ceil(4.0) = 4
Ceil(4.2) = 5
Ceil(4.8) = 5

BiggerNumberMBS.Constructor(value as Currency)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates a new number object with a currency object.
Example
Var v as Currency = 123.456
Var b as new BiggerNumberMBS(v)
MsgBox b.StringValue

See also:

BiggerNumberMBS.Constructor(value as Double)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Initialize the number with double value.
Example
Var o as BiggerNumberMBS = new BiggerNumberMBS(2.5)
MsgBox str(o.DoubleValue)+" = "+str(o.StringValue)#

See also:

BiggerNumberMBS.Constructor(value as Int32)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates a new number with a 32-bit integer.
Example
Var v as Int32 = 123
Var b as new BiggerNumberMBS(v)
MsgBox b.StringValue

See also:

BiggerNumberMBS.Constructor(value as Int64)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates a new number with a 64-bit integer.
Example
Var v as Int64 = 123
Var b as new BiggerNumberMBS(v)
MsgBox b.StringValue

See also:

BiggerNumberMBS.Constructor(value as Single)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates a new number with a 32-bit floating point number.
Example
Var v as Single = 123
Var b as new BiggerNumberMBS(v)
MsgBox b.StringValue

See also:

BiggerNumberMBS.Constructor(value as UInt32)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates a new number with an unsigned 32-bit integer.
Example
Var v as UInt32 = 123
Var b as new BiggerNumberMBS(v)
MsgBox b.StringValue

See also:

BiggerNumberMBS.Constructor(value as UInt64)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method Math MBS DataTypes Plugin 20.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Creates a new number with an unsigned 32-bit integer.
Example
Var v as UInt64 = 123
Var b as new BiggerNumberMBS(v)
MsgBox b.StringValue

See also:

The items on this page are in the following plugins: MBS DataTypes Plugin.


The biggest plugin in space...