IsObject()

Namespace ›› System ›› MfType ›› Methods ››
Parent Previous Next

IsObject()

OutputVar := instance.IsObject()

IsObject()

Gets if the type for the MfType Instance is an Object or MfObject.

Returns

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

Throws MfNullReferenceException if called on a non instance of class. See: IsInstance()

Example

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