Initializes a new instance of the MfUInt32 class.
OutputVar := new MfUInt32([int, returnAsObj, readonly])
Initializes a new instance of the MfUInt32 class optionally setting the Value property, ReturnAsObject property and the Readonly property.
int
The MfUInt32 object or var containing integer to create a new instance with.
returnAsObj
Determines if the current instance of MfUInt32 class will return MfUInt32 instances from functions or vars containing integer. If omitted value is false
readonly
Determines if the current instance of MfUInt32 class will allow its Value to be altered after it is constructed.
The Readonly property will reflect this value after the class is constructed.
If omitted value is false
Sealed Class.
This constructor initializes the MfUInt32 with the integer value of int.
Value property to the value of int.
ReturnAsObject will have a value of returnAsObj
Readonly 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 MfNotSupportedException if class is extended.
Throws MfArgumentException if error in parameter.
Throws MfNotSupportedException if incorrect type of parameters or incorrect number of parameters.