ReportStatus Property
The ReportStatus property contains the current status of the geoloaction feature.
Syntax
[long=] SiteKiosk.GeoLocation.ReportStatus
|
Possible Values
Long value that represents the current status.
|
The property is read only.
Remarks
Possible states are:
REPORT_NOT_SUPPORTED = 0
REPORT_ERROR = 1
REPORT_ACCESS_DENIED = 2
REPORT_INITIALIZING = 3
REPORT_RUNNING = 4
Examples
The following example shows the current length of the interval.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.GeoLocation.ReportStatus);
</SCRIPT>
|
Applies to
SiteKiosk v9.0 (and later versions).
Back to top