Share

vl-symbolp (AutoLISP)

Product Documentation
Intermediate

Identifies whether or not a specified object is a symbol

Arguments

(vl-symbolp object)
object

Any LISP object.

Return Values

T if object is a symbol; otherwise nil.

Examples

(vl-symbolp t)
T

(vl-symbolp nil)
nil

(vl-symbolp 1)
nil

(vl-symbolp (list 1))
nil

Was this information helpful?