Versions Compared

Key

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

GiD_Event_BeforeReadGIDProject: will be called just before read a GiD project. It receives the argument filename, which is the path of the model folder, without the .gid extension.
If it returns -cancel- then the reading is cancelled.

Code Block
proc GiD_Event_BeforeReadGIDProject { filename } {

...


...body...

...


  set value ...

...


  return $value

...


}


GiD_Event_AfterReadGIDProject: will be called just after read a GiD project. It receives the argument filename, which is the path of the model folder, without the .gid extension.

...