...
To avoid flooding parent with unnecessary messages, we have some type of message events you need to register for (https://graebert.atlassian.net/wiki/spaces/KUDOPARTNER/pages/1180500288/Message+Events+iframe+frame#Command-Events-you-need-to-register-for).
See https://graebert.atlassian.net/wiki/spaces/KUDOPARTNER/pages/1180139862/Messages#eventRegister%5BhardBreak%5DeventDeRegister how to register or deregister for such message events.
...
for event register or deregister, you can follow this
...
...
Events you need to register for
Command Events
These events are fired when a command executes, it has a various event type
...
:
Message Name | 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. |
...
These events are fired when a lisp action is performed, it has a various event type
...
:
Message Name | Descriptions |
---|---|
lispEnded | whenevever the execution of a lisp has ended |
lispCancelled | whenevever the execution of a lisp has cancelled |
...
These events are fired when a system variable change action is performed:
Event TypeMessage Name | Descriptions |
---|---|
sysvarChanged | Occurs when a change is made to the value of a system variable. |
...
These events are fired when an action is performed on drawing, it has a various event type
...
:
Message Name | 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 typeMessage Name) |
View Events
These events are fired when a view change action is performed, it has a various event type
...
:
Message Name | Descriptions |
---|---|
viewChanged | whenever the World to Eye transformation matrix has been changed. |
...
These events are fired when a selection action is performed, it has a various event type
...
:
Message Name | Descriptions |
---|---|
selectionChanged | when a change takes place to the current selection set. |
selectionCancelled | when a current selection is cancelled. |
...
These events are fired when a drawing edit action is performed, it has a various event type
...
:
Message Name | Descriptions |
---|---|
drawingModified | whenever any command or modeless operation is performed which could cause database modification. |
...