Notifications
Clear all

[Closed] Xref Objects controller

Is it possible to get all the xref ojects controllers in a xref objects record? I need to be able to get them as a list and merge in specific ones.

1 Reply

You would probably need to get all class instances of the xref_controller class, test against your desired srcfilename, and then build your UI. Something like this:

xrefFile = --place xref record path here
 xrefCont = getClassInstances xref_controller
 getSrc = for cnt in 1 to xrefCont.count where xrefCont[cnt].srcFileName == xrefFile collect xrefCont[cnt]

-Eric