Child pages
  • Maintenance Mode

Versions Compared

Key

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

...

Suppose you have a solution called "import_sample_01", with two modules called "before_import_01" and "after_import_01". The "before_import_01" module has the following onOpen event handler:

Code Blocknoformat
function onBeforeImportSolutionOpen()
{
	application.output("Method executed before solution import.");
}

The "after_import_01" module has the following onOpen event handler:

Code Blocknoformat
function onAfterImportSolutionOpen()
{
	application.output("Method executed after solution import.");
}

...