GiD_Event_AfterCreateCutSet: will be called just after a postprocess cut is created, providing its name
Code Block |
---|
proc GiD_Event_AfterCreateCutSet { name } {
} |
GiD_Event_AfterRenameCutSet: will be called just after a postprocess cut has been renamed providing its old and current name
Code Block |
---|
proc GiD_Event_AfterRenameCutSet { oldname newname } {
} |
GiD_Event_BeforeDeleteCutSet: will be called just before a postprocess cut will be deleted created, providing its name.
If the procedure return -cancel- then the cut won't be deleted
Code Block |
---|
proc GiD_Event_BeforeDeleteCutSet { name } {
#value -cancel- to avoid deletion
return $value
} |