IsMultitouchCapable Property



 
The IsMultitouchCapable property contains a boolean value indicating if the SiteKiosk browser window on a specific device is supporting multitouch gestures or not.


Syntax

    [boolean=] SiteKioskWindow.IsMultitouchCapable
Possible Values
    Boolean value. True if the window supports multitouch gestures.
    False if the window is not supporting multitouch gestures.

    The property is read only.
Remarks
    This functionality is available for Internet Explorer 10 (and later versions).
    By default the public part of the Microsoft WebBrowser control used by SiteKiosk to render web pages has limited multitouch capabilities. You can add a few lines of SiteKiosk Object Model code to a page that is using multitouch events in its script to make it work in SiteKiosk.
    Note that SiteKiosk emulates multitouch events based on the W3C specifications, the same way Firefox does.
    See also the MultitouchEnabled property to actually enable multitouch events.
Examples
    The following example reads the IsMultitouchCapable property and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.WindowList.ActiveWindow.SiteKioskWindow.
    IsMultitouchCapable);
    </SCRIPT>

Applies to
    SiteKiosk v8.8 (and later versions).

Back to top