...
Code Block |
---|
proc GiD_Event_AfterProcess { words is_rotation } { } |
GiD_Event_AfterEndCommand: will be called just after GiD pop a function from its stack. is_view==1 if the command is some kind of view command, like a rotation, displacement, etc.
Code Block |
---|
proc GiD_Event_AfterEndCommand {is_view } {
} |
GiD_Event_BeforeSetVariable / GiD_Event_AfterSetVariable: will be called just before or after set the value of a GiD variable
...
Code Block |
---|
proc GiD_Event_AfterSaveKernelDefaults { filename } {
} |
GiD_Event_BeforeExit: will be called just before exit GiD
Code Block |
---|
proc GiD_Event_BeforeExit { } {
} |