Events (iframe → frame)
We have the following types of drawings events which notify the iframe parent , to avoid flooding parent with unnecessary messages, parent should get messages only if it has registered for them.
for event register or deregister, you can follow this
Command Events
These events are fired when a command executes, it has a various event type
Event Type | Descriptions |
---|---|
commandWillStart | whenever the execution of a command will start. |
commandEnded | whenevever the execution of a command has ended |
commandCancelled | whenevever the execution of a command has been canceled. |
commandFailed | whenevever the execution of a command has failed. |
modelessOperationWillStart | whenever a modeless operation is about to start. |
modelessOperationEnded | whenever a modeless operation has ended. |
Lisp Events
These events are fired when a lisp action is performed, it has a various event type
Event Type | Descriptions |
---|---|
lispEnded | whenevever the execution of a lisp has ended |
lispCancelled | whenevever the execution of a lisp has cancelled |
System Variables Events
These events are fired when a system variable change action is performed
Event Type | Descriptions |
---|---|
sysvarChanged | Occurs when a change is made to the value of a system variable. |
Drawing Events
These events are fired when an action is performed on drawing, it has a various event type
Event Type | Descriptions |
---|---|
drawingSaved | when a drawing is saved. |
UploadBegin | when a drawing upload is going to start |
UploadComplete | when a drawing upload was done |
drawingDescription* | (*not implemented yet) |
drawingLoaded** | when drawing is entirely loaded on clientside. (** You don’t need to register for this event type) |
View Events
These events are fired when a view change action is performed, it has a various event type
Event Type | Descriptions |
---|---|
viewChanged | whenever the World to Eye transformation matrix has been changed. |
Selection Events
These events are fired when a selection action is performed, it has a various event type
Event Type | Descriptions |
---|---|
selectionChanged | when a change takes place to the current selection set. |
selectionCancelled | when a current selection is cancelled. |
Drawing Modified Events
These events are fired when a drawing edit action is performed, it has a various event type
Event Type | Descriptions |
---|---|
drawingModified | whenever any command or modeless operation performed which could cause database modified. |