====== __include ======
Method of [[:scripting:api:script-application:start|IScriptApplication]]
===== Description =====
Dynamically include file into global scope.
===== Parameters =====
* [[scripting:api:data-type:BSTR|BSTR]] **strPath**
==== Return Value ====
* [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbSuccess**
===== Syntax =====
==== JavaScript ====
var pbSuccess = ScriptApplication.__include(strPath);
==== Visual Basic Script ====
pbSuccess = ScriptApplication.__include strPath
==== C++ ====
VARIANT_BOOL bSuccess;
HRESULT hr = ScriptApplication.__include(strPath, &bSuccess);
===== See Also =====
[[:scripting:api:script-application:start|IScriptApplication]]
~~NOTOC~~