vlr-type
(vlr-type reactor)
This function verifies the type of the
specified reactor.
Arguments
|
reactor (any reactor object) the reactor to
query
|
Return
|
symbol; the type of
the reactor object, can be one of :
|
:VLR-AcDb-Reactor
|
database reactor
|
|
:VLR-Command-Reactor
|
command reactor
|
|
:VLR-DeepClone-Reactor
|
deepclone reactor (cloning in
same database)
|
|
:VLR-DocManager-Reactor
|
document manager
reactor
|
|
:VLR-DWG-Reactor
|
drawing reactor
|
|
:VLR-DXF-Reactor
|
DXF operation reactor
|
|
:VLR-Editor-Reactor
|
CAD editor reactor
|
|
:VLR-Insert-Reactor
|
insert operation
reactor
|
|
:VLR-Linker-Reactor
|
BRX module loader
reactor
|
|
:VLR-Lisp-Reactor
|
Lisp events reactor
|
|
:VLR-Miscellaneous-Reactor
|
reactor covering several
other events + operations
|
|
:VLR-Mouse-Reactor
|
mouse event reactor
|
|
:VLR-Object-Reactor
|
object + entity operation
reactor
|
|
:VLR-SysVar-Reactor
|
system variables
reactor
|
|
:VLR-Toolbar-Reactor
|
toolbar operation
reactor
|
|
:VLR-Undo-Reactor
|
undo operation reactor
|
|
:VLR-Wblock-Reactor
|
wblockclone reactor (cloning
between different databases)
|
|
:VLR-Window-Reactor
|
window operation
reactor
|
|
:VLR-XREF-Reactor
|
xref operation reactor
|
|
Example
|
(setq rx (vlr-object-reactor
nil nil '((:vlr-modified . cb))))
#<VLR-Object-Reactor>
(vlr-type rx) :VLR-OBJECT-REACTOR
|
Remarks
|
see (vlr-types) function
|