Lists LISP data in a drawing dictionary
(vlax-ldata-list dict [private])
- dict
- private
-
If vlax-ldata-list is called from a separate-namespace VLX and a non-nil value is specified for private, vlax-ldata-list retrieves only private data stored by the same VLX. (See vlax-ldata-get for examples using this argument.)
An associative list consisting of pairs (key . value).
Use vlax-ldata-put to store LISP data in a dictionary:
_$ (vlax-ldata-put "dict" "cay" "Mumbo Jumbo ")
"Mumbo Jumbo "
_$ (vlax-ldata-put "dict" "say" "Floobar ")
"Floobar "
Use vlax-ldata-list to display the LISP data stored in “dict”:
_$ (vlax-ldata-list "dict")
(("say" . "Floobar ") ("cay" . "Mumbo Jumbo "))
See Also
-
The vlax-ldata-get, vlax-ldata-delete, and vlax-ldata-put functions.