Value

Namespace ›› System ›› MfUInt64 ›› Properties ››
Parent Previous Next

Value

Overrides MfPrimitive.Value

Gets or sets the value associated with the this instance of MfUInt64

OutputVar := instance.Value
instance.Value := Value

value

Value is a integer and can be var or any type that matches IsIntegerNumber.

Sets

Set the Value of the instance. Can  be var or any type that matches IsIntegerNumber.

Gets

Gets integer Value as var with a value no less then MinValue and no greater than MaxValue.

Throws

Throws MfNotSupportedException on set if Readonly is true.
Throws MfArgumentOutOfRangeException if value is less then MinValue or greater then MaxValue
Throws MfArgumentException for other errors.

Remarks

int := new MfUInt64(15) ; Create a new instance of the MfUInt64 Class
MsgBox % int.Value ; Displays Message box with containing 15
int.Value := 22 ; Sets the value of MfUInt64 Class instance int
MsgBox % int.Value ; Displays Message box with containing 22