models event area ¶
Description¶
Notification of model creation/update/move/delete and selection.
Event¶
Name | Definition Name | Description |
---|---|---|
Event before model addition | onBeforeNew | Event notified before model addition. |
Event after model addition | onAfterNew | Event notified after model addition. |
Field value changed event | onFieldChanged | This event is notified after the field value is changed. |
Before model deletion event | onBeforeDelete | This event is notified before model deletion. |
Model parent before change event | onBeforeChangeOwner | This event is notified before changing the model parent. |
Event after changing model parent | onAfterChangeOwner | This event is notified after changing the parent of the model. |
Model order change event | onBeforeChangeOrder | This event is notified before the model order is changed. |
Model order change event | onAfterChangeOrder | This event is notified after the model order is changed. |
Event before adding relation | onBeforeNewRelation | Event notified before adding relation. |
Event after adding relation | onAfterNewRelation | Event notified after adding relation. |
Model validation event | onValidate | This event is notified when the model is validated. |
Event when error is added | onError | Event notified when an error is added to the model. |
Model edit event | onModelEdited | This event is notified when a model is edited. |
Undo/redo event | onUndoRedo | This event is notified when undo/redo is executed. |
Interface belonging to area¶
Name | Description |
---|---|
ModelBeforeNewEventParams | This is the parameter of the event before model addition. |
ModelAfterNewEventParams | Parameters for the event after model addition. |
ModelFieldChangedEventParams | Parameters of the field value changed event. |
ModelBeforeChangeOwnerEventParams | The parameters of the parent change event of the model. |
ModelAfterChangeOwnerEventParams | Parameters of the parent change event of the model. |
ModelBeforeChangeOrderEventParams | This is the parameter for the model order change before event. |
ModelAfterChangeOrderEventParams | Parameters for the model order change event. |
ModelBeforeDeleteEventParams | Parameters for the model before deletion event. |
ModelBeforeNewRelationEventParams | Parameters of the event before adding relation. |
ModelAfterNewRelationEventParams | This is a parameter of the event after relation is added. |
ModelOnValidateEventParams | Parameters for model evaluation events. |
ModelOnErrorEventParams | This is a parameter of the error addition event of the model. |
ModelEditedEventParams | Parameters for model changed events. All model information that some change occurred by one edit operation is notified . |
ModelUndoRedoEventParams | Parameters for undo/redo events. All model information that has been changed by the undo/redo operation will be notified. |
IModelDictionary | Dictionary/list of models. |