Equals()

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

Equals()

Overrides MfObject.Equals()

OutputVar := MfType.Equals(objA, objB)
OutputVar := instance.Equals(objA)

Equals(objA)

Compares MfType instance to current instance to see if they are the same.

Parameters

objA

The MfType object to compare

Returns

Returns var containing Boolean value of true if the MfType objects are the same; Otherwise false.

Remarks

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.

Example

MyString := new MfString("Hello World")

T := new MfType(MfString)

if (T.Equals(MyString.GetType()))
{
   MsgBox, 64, Type Match, The Types Match!
}


MfType.Equals(objA, objB)

Static Method

Compares MfType objA and objB to see if they are the same.

Parameters

objA

The first MfType object to compare

objB

The second MfType object to compare to objA.

Returns

Returns var containing Boolean value of true if the MfType objects are the same TypeName otherwise false.

Remarks

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.

Example

MyString := new MfString("Hello World")

T := new MfType(MfString)

if (MfType.Equals(T, MyString.GetType()))
{
   MsgBox, 64, Type Match, The Types Match!
}