OutputVar := MfType.InheritancePath(obj)
Formats a string var that contains the Inheritance Path for an object represented by obj.
obj
The object instance to get the Inheritance Path for.
Returns a formatted a string var that contains the Inheritance Path of obj.
Static method
col := new MfCollection()
MsgBox % MfType.InheritancePath(col)
; results in
; Inheritance tree
;
; MfObject
; >MfEnumerableBase
; >MfCollectionBase
; >MfCollection