InheritancePath()

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

InheritancePath()

OutputVar := MfType.InheritancePath(obj)

MfType.InheritancePath(obj)

Formats a string var that contains the Inheritance Path for an object represented by obj.

Parameters

obj

The object instance to get the Inheritance Path for.

Returns

Returns a formatted a string var that contains the Inheritance Path of obj.

Remarks

Static method

Example

col := new MfCollection()
MsgBox % MfType.InheritancePath(col)
; results in
; Inheritance tree
;
; MfObject
;    >MfEnumerableBase
;       >MfCollectionBase
;          >MfCollection