IEMinorVersion Property
The IEMinorVersion property contains the minor version number of the Internet Explorer.
Syntax
[long=] SiteKiosk.Version.IEMinorVersion
|
Possible Values
Long value that retrieves the minor version.
|
The property is read only.
Remarks
The minor version number is the number given after the dot.
Examples
The following example shows the minor version number of the Internet Explorer in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Version.IEMinorVersion);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top