MultitouchEnabled Property



 
The MultitouchEnabled property enables or disables multitouch support for a web page in the SiteKiosk browser.


Syntax

    SiteKioskWindow.MultitouchEnabled [=bool]
    
Possible Values
    Boolean that enables or disables multitouch events.

    The property is read/write.
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.
Examples
    The following example enables multitouch events for a page running in the main browser window of SiteKiosk.

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

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

Back to top