Interactive

Property of IWScript

Description

Identifies the script mode

Property type

Read-Write Property of type 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 ===== IWScript