TextMessagingEnabled Property



 
The TextMessagingEnabled property indicates whether text messaging is enabled or not.


Syntax

    [boolean=] SiteKiosk.Plugins("SitePhone").TextMessagingEnabled
Possible Values
    Boolean value that retrieves whether text messaging is enabled.

    The property is read only.
Remarks
    None.
Examples
    The following example checks whether text messaging is enabled and sends a
    "Hello world!" message.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SitePhone = SiteKiosk.Plugins("SitePhone");
    
    if (SitePhone.TextMessagingEnabled)
       SitePhone.SendTextMessage("+1 918 555 5000", "Hello world!");
    </SCRIPT>

Applies to
    SiteKiosk v7.0 (and later versions).

Back to top