Overrides MfObject.CompareTo()
OutputVar := instance.CompareTo(obj)
Compares the current instance of MfType with another instance of MfType and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
obj
An instance of MfType to compare with this instance.
Returns a value that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance precedes obj in the sort order. Zero This instance occurs in the same position in the sort order as obj Greater than zero This instance follows obj in the sort order.
If current instance and obj instance have their ClassName property set then compare is done on the ClassName property; Otherwise the compare is done on the TypeCode property.
Throws MfNullReferenceException if MfType is not set to an instance.
Throws MfArgumentException is not the same type as this instance.