Is()

Namespace ›› System ›› MfBool ›› Methods ››
Parent Previous Next

Is()

Overrides MfObject.Is().

OutputVar := instance.Is(ObjType)

Is(ObjType)

Gets if current instance of MfBool is of the same type as ObjType or derived from ObjType.

Parameters

ObjType

The object or type to compare to this instance Type.
ObjType can be an instance of MfType or an object derived from MfObject or an instance of or a string containing the name of the object type such as "MfObject"

Returns

Returns true if current object instance is of the same Type as the ObjType or if current instance is derived from ObjType or if ObjType = "boolean"; Otherwise false.

Remarks

If a string is used as the Type case is ignored so "MfObject" is the same as "mfobject"

Example

mfb := new MfBool()
MsgBox % mfb.Is(MfBool)    ; display 1 for true
MsgBox % mfb.Is("mfbool")  ; display 1 for true
MsgBox % mfb.Is("boolean") ; display 1 for true
MsgBox % mfb.Is(MfInteger) ; display 0 for true
MsgBox % mfb.Is(MfObject)  ; display 1 for true