Share

vl-symbol-value (AutoLISP)

Product Documentation
Intermediate

Returns the current value bound to a symbol

(vl-symbol-value symbol)

This function is equivalent to the eval function, but does not call the LISP evaluator.

Arguments

symbol

Any LISP symbol.

Return Values

The value of symbol, after evaluation.

Examples

(vl-symbol-value 't)
T

(vl-symbol-value 'PI)
3.14159

(progn (setq sym 'PAUSE) (vl-symbol-value sym))
"\\"

Was this information helpful?