Value

Namespace ›› System ›› MfInt64 ›› Properties ››
Parent Previous Next

Value

Overrides MfPrimitive.Value

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

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.

Example

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