This documentation is archived and is not being maintained.
ScriptEngine Function (JScript 10.0)
Visual Studio 2010
Returns a string representing the scripting language in use.
function ScriptEngine() : String
The ScriptEngine function can return any of the following strings:
String | Description |
|---|---|
JScript | Indicates that Microsoft JScript is the current scripting engine. |
VBA | Indicates that Microsoft Visual Basic for Applications is the current scripting engine. |
VBScript | Indicates that Microsoft Visual Basic Scripting Edition is the current scripting engine. |
The following example illustrates the use of the ScriptEngine function:
function GetScriptEngineInfo(){
var s;
s = ""; // Build string with necessary info.
s += ScriptEngine() + " Version ";
s += ScriptEngineMajorVersion() + ".";
s += ScriptEngineMinorVersion() + ".";
s += ScriptEngineBuildVersion();
return(s);
}
Show: