Gets or sets the value associated with the this instance of MfSByte.
Overrides MfPrimitive.Value.
OutputVar := instance.Value
instance.Value := Value
value
Value is a byte 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.
sbyte := new MfSByte(15) ; Create a new instance of the MfByte Class
MsgBox % sbyte.Value ; Displays 15
sbyte.Value := 22 ; Sets the value of MfByte Class instance byte
MsgBox % sbyte.Value ; Displays 22
MyInt := new MfInteger(-46)
sbyte.Value := sMyInt
MsgBox % sbyte.Value ; Displays -46