GiD_Event_AfterCreateGraph: will be called when a new graph is created
Code Block |
---|
proc GiD_Event_AfterCreateGraph { name } {
} |
GiD_Event_BeforeDeleteGraph: will be called just before delete the graph 'name'
If it returns -cancel- the deletion is cancelled.
Code Block |
---|
proc GiD_Event_BeforeDeleteGraph { name } {
...body...
set value ...
return $value
} |
GiD_Event_AfterDeleteGraph:
Code Block |
---|
proc GiD_Event_AfterDeleteGraph { name } {
} |
GiD_Event_AfterChangeGraph: property could be: color, contour_fill, line_pattern, line_width, pattern_factor, point_size, style, values, visible
Code Block |
---|
proc GiD_Event_AfterChangeGraph { name property } {
} |
GiD_Event_AfterRenameGraph:
Code Block |
---|
proc GiD_Event_AfterRenameGraph { oldname newname } {
} |