Value

Namespace ›› System ›› MfByte ›› Properties ››
Parent Previous Next

Value

Gets or sets the value associated with the this instance of MfByte.
Overrides MfPrimitive.Value.

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

value

Value is a byte 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

byte := new MfByte(15) ; Create a new instance of the MfByte Class
MsgBox % byte.Value ; Displays 15
byte.Value := 22 ; Sets the value of MfByte Class instance byte
MsgBox % byte.Value ; Displays 22

MyInt := new MfInteger(46)
byte.Value := MyInt
MsgBox % byte.Value ; Displays 46