Imports a previously exported function into a VLX namespace
(vl-doc-import application ['function...])
This function can be used in a separate-namespace VLX to import a function that was previously exported from another VLX loaded from the same document.
vl-doc-import function should be used only at the top level in a file, and never inside other forms (for example, not within a defun).
TheArguments
A string naming the VLX application whose functions are to be imported. Do not include the .vlx extension in the name.
One or more symbols naming functions to be imported. If no functions are specified, all functions exported by application will be imported.
Return Values
Unspecified.
Examples
ldataget from the ldatatest application:
Import function(vl-doc-import "ldatatest" 'ldataget)
nil