OutputVar := instance.IsObject()
Gets if the type for the MfType Instance is an Object or MfObject.
Returns true if type is Object or MfObject; Otherwise false.
Remarks
All Mini-Framework Objects ( all extend/inherit MfObject ) will return true for IsObject().
Throws MfNullReferenceException if called on a non instance of class. See: IsInstance()
myObj := Object()
MyMfObj := new MfString("Hello World")
T1 := new MfType(myObj)
T2 := new MfType("my string")
MsgBox % T1.IsObject() ; displays 1 for true
MsgBox % T2.IsObject() ; displays 0 for false
MsgBox % MyMfObj.GetType().IsObject() ; displays 1 for true