MinorVersion Property
The MinorVersion property contains the minor version number of SiteKiosk.
Syntax
[long=] SiteKiosk.Version.MinorVersion
|
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 SiteKiosk in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Version.MinorVersion);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top