UserCallsEnabled Property
The UserCallsEnabled property indicates whether user calls are enabled or not.
Syntax
[boolean=] SiteKiosk.Plugins("SitePhone").UserCallsEnabled
|
Possible Values
Boolean value that retrieves whether user calls are enabled or not.
|
The property is read only.
Remarks
Examples
The following example checks whether user calls are enabled and calls a test user.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SitePhone = SiteKiosk.Plugins("SitePhone");
if (SitePhone.UserCallsEnabled)
SitePhone.StartCall("echo123");
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top