GiD_Event_AfterCreateGraphSet: will be called when a new graphset is created
Code Block |
---|
proc GiD_Event_AfterCreateGraphSet { name } {
} |
GiD_Event_BeforeDeleteGraphSet: will be called just before delete the graphset 'name'
If it returns -cancel- the deletion is cancelled.
Code Block |
---|
proc GiD_Event_BeforeDeleteGraphSet { name } {
...body...
set value ...
return $value
} |
GiD_Event_AfterDeleteGraphSet:
Code Block |
---|
proc GiD_Event_AfterDeleteGraphSet { name } {
} |
GiD_Event_AfterChangeGraphSet: property could be: legend_location, title_visible
Code Block |
---|
proc GiD_Event_AfterChangeGraphSet { name property } {
} |
GiD_Event_AfterRenameGraphSet:
Code Block |
---|
proc GiD_Event_AfterRenameGraphSet { oldname newname } {
} |
GiD_Event_AfterSetGraphSetToUse: will be called when setting 'name' as current graphset to use
Code Block |
---|
proc GiD_Event_AfterSetGraphSetToUse { name } {
} |