scripting:api:script-application:on-bundle-installed

onBundleInstalled

Read-Write Property of type VARIANT

var Action = ScriptApplication.onBundleInstalled;
ScriptApplication.onBundleInstalled = Action;

==== Visual Basic Script ====

Action = ScriptApplication.onBundleInstalled
ScriptApplication.onBundleInstalled = Action

==== C++ ====

VARIANT Action;
HRESULT hr = ScriptApplication.get_onBundleInstalled(&Action);
hr = ScriptApplication.put_onBundleInstalled(Action);

===== See Also ===== IScriptApplication