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