GiD_Event_AfterProcess: will be called just after GiD has finished the process of 'words' and the word is consumed (the parameter is_rotationview==1 if the command is a view function, like a view movementrotation of the view, pan,...).
This event could be interesting for some tricks, like save processed commands in a batch file, or send the commands to be processed by other GiD slave, etc.
Code Block |
---|
proc GiD_Event_AfterProcess { words is_rotationview } { } |
GiD_Event_AfterEndCommand: will be called just after GiD pop a function from its stack. (the parameter 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
...