Constructs an editor reactor object that notifies of a deep clone event
(vlr-deepclone-reactor datacallbacks)
Arguments
nil if no data.
Any AutoLISP data to be associated with the reactor object; otherwiseA list of pairs of the following form:
(event-name . callback_function)
where event-name is one of the symbols listed in the âDeepClone reactor eventsâ table below, and callback_function is a symbol representing a function to be called when the event fires. Each callback function accepts two arguments:
reactor_objectâThe VLR object that called the callback function.
listâA list of extra data elements associated with the particular event. The contents of this list for particular events are shown in the âDeepClone reactor callback dataâ table.
Return Values
The reactor_object argument.
DeepClone reactor events |
|
---|---|
Event name |
Description |
:vlr-beginDeepClone |
A deep clone operation is beginning. |
:vlr-beginDeepCloneXlation |
A deep clone operation has two stages. First, each object and any owned objects are cloned. Second, any object ID references are translated to their cloned IDs. This callback occurs between these two stages. |
:vlr-abortDeepClone |
A deep clone operation is aborting. |
:vlr-endDeepClone |
A deep clone operation is ending. |
â
DeepClone reactor callback data |
||
---|---|---|
Name |
List length |
Parameters |
:vlr-beginDeepClone :vlr-abortDeepClone :vlr-endDeepClone |
0 |
|
:vlr-beginDeepCloneXlation |
1 |
An integer containing the return error status; if this value indicates an error, the deep clone operation is terminated |