Constructor()

Namespace ›› System ›› MfPrimitive ›› Methods ››
Parent Previous Next

Constructor()

OutputVar := new MfPrimitive(value [, returnAsObject, setReadOnly])

Constructor(value [, returnAsObject, SetReadOnly])

Constructor for Abstract MfPrimitive Class

Parameters

value

The value of from the derived class of the MfPrimitive type

returnAsObject

Boolean var that sets the state of ReturnAsObject property. Default Value is False

setReadOnly

Boolean var that sets the state of Readonly property. Default Value is False

Throws

Throws MfNotSupportedException if this Abstract class constructor is called directly.

Remarks

Derived classes must call base.__New(value) in their constructors.

Example

class MyClass extends MfPrimitive
{
       __New(Value)
       {
               base.__New(value)
       }

       ; Other code here...
}