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.
Set the Value of the instance. Can be var or any type that matches IsIntegerNumber.
Gets integer Value as var with a value no less then MinValue and no greater than MaxValue.
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.
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