Stores LISP data in a drawing dictionary or an object
Supported Platforms: Windows only
(vlax-ldata-put dict key data [private])
Type: VLA-object or String
A object, an AutoCAD drawing entity object, or a string naming a global dictionary.
Type: String
Dictionary key.
Type: Integer, Real, String, List, Ename (entity name), VLA-object, Variant, Safearray, T, or nil
LISP data to be stored in the dictionary.
Type: T or nil
If 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.
Type: Integer, Real, String, List, Ename (entity name), VLA-object, Variant, Safearray, T, or nil
The value of data.
(vlax-ldata-put "dict" "key" '(1)) (1) (vlax-ldata-put "dict" "cay" "Gumbo jumbo") "Gumbo jumbo"