Versions Compared

Key

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

...

Code Block
proc GiD_Event_BeforeSetVariable { variable value } {
    #to avoid change the variable return -cancel-
}

proc GiD_Event_AfterSetVariable { variable value } {
}


GiD_Event_AfterSaveKernelDefaults: will be called just after save the C++ variables in the user preferences file

Code Block
proc GiD_Event_AfterSaveKernelDefaults { filename } {
}

GiD_Event_BeforeExit: will be called just before exit GiD

...