Overrides MfPrimitive.Value
Gets or sets the value associated with the this instance of MfUInt32
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 MfUInt32(15) ; Create a new instance of the MfUInt32 Class
MsgBox % int.Value ; Displays Message box with containing 15
int.Value := 22 ; Sets the value of MfUInt32 Class instance int
MsgBox % int.Value ; Displays Message box with containing 22