Overwrites application-specific data associated with a reactor
Supported Platforms: Windows only
(vlr-data-set obj data)
Type: VLR object
A object representing the reactor object whose data is to be overwritten.
Type: Integer, Real, String, List, VLA-object, Safearray, Variant, T, or nil
Any AutoLISP data.
Type: Integer, Real, String, List, VLA-object, Safearray, Variant, T, or nil
The data argument.
Return the application-specific data value attached to a reactor:
(vlr-data circleReactor) "Circle Reactor"
Replace the text string used to identify the reactor:
(vlr-data-set circleReactor "Circle Area Reactor") "Circle Area Reactor"
Verify the change:
(vlr-data circleReactor) "Circle Area Reactor"