GiD - The personal pre and post processor

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

GiD_Event_BeforeSaveGIDProject / GiD_Event_AfterSaveGIDProject will be called just before save a GiD project. It receives the argument modelname which is the path of the model folder, without the .gid extension.

If GiD_Event_BeforeSaveGIDProject returns -cancel- then the writting is cancelled.


proc GiD_Event_BeforeSaveGIDProject { modelname } {
... body ...
set value ...
return $value
}

proc GiD_Event_AfterSaveGIDProject { modelname } {
}


GiD_Event_AfterSaveAsGIDProject: will be called after GiD save its information in the new_filename location, when this folder and the model files exists, and provide the old_filename argument for example to allow to copy extra data, like result files handled by the problemtype.


proc GiD_Event_AfterSaveAsGIDProject { old_modelname new_modelname } {
}

GiD_Event_AfterSaveFile: will be called after a geometry or mesh file is exported to a file. It receives as arguments:

  • filename: the full name of the file that has been written;
  • format: ACIS_FORMAT, DXF_FORMAT, GID_GEOMETRY_FORMAT, GID_MESH_FORMAT, IGES_FORMAT, RHINO_FORMAT, AMELET_FORMAT, KML_FORMAT.
  • error: boolean 0 or 1 to indicate an error when writting.


proc GiD_Event_AfterSaveFile { filename format error } {
}

GiD_Event_AfterSaveImage: will be called after a picture or model is saved to disk. It receives as arguments:

  • filename: the full name of the file that has been saved;
  • format: eps, ps, tif, bmp, ppm, gif, png, jpg, tga, wrl


proc GiD_Event_AfterSaveImage { filename format } {
}
  • No labels