Value

Namespace ›› System ›› MfUInt16 ›› Properties ››
Parent Previous Next

Value

Overrides MfPrimitive.Value

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

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 MfIUnt16(15) ; Create a new instance of the MfUInt16 Class
MsgBox % int.Value ; Displays Message box with containing 15
int.Value := 22 ; Sets the value of MfInt16 Class instance int
MsgBox % int.Value ; Displays Message box with containing 22