====== onBundleInstalled ======
Event of [[:scripting:api:script-application:start|IScriptApplication]]
===== Description =====
Handler for [[:scripting:api:frame-events:on-bundle-installed|IFrameEvents::onBundleInstalled]]
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]**
===== Syntax =====
==== JavaScript ====
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 =====
[[:scripting:api:script-application:start|IScriptApplication]]
~~NOTOC~~