Determines whether a separate-namespace VLX is currently loaded
(vl-vlx-loaded-p appname)
Arguments
A string naming a VLX application.
Return Values
T if the application is loaded, nil if it is not loaded.
Examples
vlxns application is loaded in its own namespace:
Check to see if theCommand: (vl-vlx-loaded-p "vlxns")
nil
The application is not loaded in its own namespace.
vlxns:
Now loadCommand: (load "vlxns.vlx")
nil
vlxns application loaded successfully:
Check to see if theCommand: (vl-vlx-loaded-p "vlxns")
T
vlxns was defined to run in its own namespace. If the application was not defined to run in its own namespace, it would load into the current document's namespace and vl-vlx-loaded-p would return nil.
This example assumesload and vl-unload-vlx functions.
The