...
Code Block |
---|
proc GiD_Event_BeforeExit { } { } |
GiD_Event_BeforeSaveBackup : will be called just before save a backup.
<dirname> is the name of the folder were will be saved (it can already do not exists).
To avoid save it can return -cancel-
Code Block |
---|
proc GiD_Event_BeforeSaveBackup { dirname } {
} |
GiD_Event_AfterSaveBackup : will be called just after save a backup.
<dirname> is the name of the folder were it was saved
Code Block |
---|
proc GiD_Event_AfterSaveBackup { dirname } {
} |