Constructor()

Namespace ›› System ›› MfByte ›› Methods ››
Parent Previous Next

Constructor()

Initializes a new instance of the MfByte class.

OutputVar := new MfByte([byte, returnAsObj, readonly])

Constructor([byte, retunAsObj, readonly])

Initializes a new instance of the MfByte class optionally setting the Value property, ReturnAsObject property and the Readonly property.

Parameters

byte

The MfByte object or var containing Byte value to create a new instance with.

returnAsObj

Determines if the current instance of MfByte class will return MfByte instances from functions or vars containing integer. If omitted value is false.

readonly

Determines if the current instance of MfBool class will allow its Value to be altered after it is constructed.
The Readonly property will reflect this value after the classes is constructed.
If omitted value is false

Remarks

Sealed class.
This constructor initializes the MfByte with the integer value of byte.
Value property to the value of byte.
ReturnAsObject will have a value of returnAsObj
Readonly property will have a value of readonly
If Readonly is true then any attempt to change the underlying value will result in MfNotSupportedException being thrown.

Throws

Throws MfNotSupportedException if class is extended.
Throws MfArgumentException if error in parameter.
Throws MfNotSupportedException if incorrect type of parameters or incorrect number of parameters.

Example

; creates a default instance of class with value of 0, ReturnAsObject is false and read-only is false
MyByte := new MfByte()

; creates a instance of class with value of 0, ReturnAsObject is true and read-only is false
MyByte := new MfByte(, true)

; creates a instance of class with value of 11, ReturnAsObject is false and read-only is true
MyByte := new MfByte(11, , true)