vl-doc-import

AutoCad AutoLISP Functions

 
vl-doc-import
 
 
 

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.

The 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).

Arguments

application

A string naming the VLX application whose functions are to be imported. Do not include the .vlx extension in the name.

function

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

Import function ldataget from the ldatatest application:

(vl-doc-import "ldatatest" 'ldataget)
nil