Stores LISP data in a drawing dictionary or an object
(vlax-ldata-put dict key data [private])
Arguments
A VLA-object, an AutoCAD drawing entity object, or a string naming a global dictionary.
A string specifying the dictionary key.
LISP data to be stored in the dictionary.
vlax-ldata-put is called from a separate-namespace VLX and a non-nil value is specified for private, vlax-ldata-put marks the data as retrievable only by the same VLX.
IfReturn Values
The value of data.
Examples
_$ (vlax-ldata-put "dict" "key" '(1))
(1)
_$ (vlax-ldata-put "dict" "cay" "Gumbo jumbo")
"Gumbo jumbo"
vlax-ldata-get, vlax-ldata-delete, and vlax-ldata-list functions.
The