Overrides MfObject.Equals()
OutputVar := MfType.Equals(objA, objB)
OutputVar := instance.Equals(objA)
Compares MfType instance to current instance to see if they are the same.
objA
The MfType object to compare
Returns var containing Boolean value of true if the MfType objects are the same; Otherwise false.
If current instance and objA instance have their ClassName property set then compare is done on the ClassName property; Otherwise the compare is done on the TypeCode property.
MyString := new MfString("Hello World")
T := new MfType(MfString)
if (T.Equals(MyString.GetType()))
{
MsgBox, 64, Type Match, The Types Match!
}
Static Method
Compares MfType objA and objB to see if they are the same.
objA
The first MfType object to compare
objB
The second MfType object to compare to objA.
Returns var containing Boolean value of true if the MfType objects are the same TypeName otherwise false.
If instance of objA and instance of objB have their ClassName property set then compare is done on the ClassName property; Otherwise the compare is done on the TypeCode property.
MyString := new MfString("Hello World")
T := new MfType(MfString)
if (MfType.Equals(T, MyString.GetType()))
{
MsgBox, 64, Type Match, The Types Match!
}