Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GiD_Event_AfterReadGIDProject: will be called just after read a GiD project. If errors appear while reading the GiD project, the function is not called. It receives the argument filename, which is the path of the model folder, without the .gid extension.

Code Block
proc GiD_Event_AfterReadGIDProject { filename } {
}


GiD_Event_AfterReadGIDProjectWithError: will be called after reading a GiD project with errors. It receives the argument procjetfilename, which is the path of the model folder, without the .gid extension and an error_string describing the error found.

Code Block
proc GiD_Event_AfterReadGIDProjectWithError { project_filename error_string } {
}


GiD_Event_AfterInsertGIDProject: will be called just after insert a GiD project into the current one. It receives the argument filename, which is the path of the model folder, without the .gid extension.

...