Returns a list of all separate-namespace VLX files associated with the current document
(vl-list-loaded-vlx)
Return Values
nil, if there are no VLX applications associated with the current document.
A list of symbols identifying separate-namespace VLX applications associated with the current AutoCAD document; otherwisevl-list-loaded-vlx function does not identify VLX applications that are loaded in the current document's namespace.
TheExamples
Test for loaded VLX files associated with the current AutoCAD document:
_$ (vl-list-loaded-vlx)
nil
No VLX files are associated with the current document.
Load two VLX files; both VLX applications have been compiled to run in their own namespace:
_$ (load "c:/my documents/visual lisp/examples/foo1.vlx")
nil
_$ (load "c:/my documents/visual lisp/examples/foo2.vlx")
nil
Test for loaded VLX files associated with the current AutoCAD document:
_$ (vl-list-loaded-vlx)
(FOO1 FOO2)
vl-list-loaded-vlx.
The two VLX files just loaded are identified byLoad a VLX that was compiled to run in a document's namespace:
_$ (load "c:/my documents/visual lisp/examples/foolocal.vlx")
nil
Test for loaded VLX files:
_$ (vl-list-loaded-vlx)
(FOO1 FOO2))
vl-list-loaded-vlx because the application was loaded into the document's namespace; the VLX does not have its own namespace.
The last VLX loaded (foolocal.vlx) is not returned by