====== Interactive ======
Property of [[:scripting:api:wscript:start|IWScript]]
===== Description =====
Identifies the script mode
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]]**
===== Syntax =====
==== JavaScript ====
var bVal = WScript.Interactive;
WScript.Interactive = bVal;
==== Visual Basic Script ====
bVal = WScript.Interactive
WScript.Interactive = bVal
==== C++ ====
VARIANT_BOOL bVal;
HRESULT hr = WScript.get_Interactive(&bVal);
hr = WScript.put_Interactive(bVal);
===== See Also =====
[[:scripting:api:wscript:start|IWScript]]
~~NOTOC~~