Constructor()

Namespace ›› System ›› MfAttribute ›› Methods ››
Parent Previous Next

Constructor()

Constructor for Abstract MfAttribute Class

OututVar := new MfAttribute()

Constructor()

Constructor for Abstract MfAttribute Class

Throws

Throws MfNotSupportedException if this Abstract class constructor is called directly.

Remarks

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

Example

class AtrributeMyCustomAttrib extends MfAttribute
{
   m_value := "" __New(Value)
   {
       base.__New()
       this.m_value := Value
   }
       
   ; Other code here...
}