Returns a value to the function that invoked the VLX from another namespace
(vl-exit-with-value value)
*error* handler can use the vl-exit-with-value function to return a value to the program that called the VLX.
A VLXArguments
Any value.
Return Values
value
Examples
vl-exit-with-value to return the integer value 3 to the function that invoked the VLX:
The following example uses(defun *error* (msg)
... ; processing in VLX-T namespace/execution context
(vl-exit-with-value 3))
*error* and vl-exit-with-error functions. The Handling Errors in an MDI Environment topic in the AutoLISP Developer's Guide.
The