Sysmenu Property



 
The Sysmenu property indicates if the dialog window has a standard window menu.


Syntax

    SKHtmlDialog.Sysmenu [=bool]
Possible Values
    Boolean value that specifies or retrieves if
    a menu exists.

    The property is read/write.
Remarks
    The standard window menu contains a close button and move functionality. Even if the menu is hidden, user will be able to close the window by pressing Esc.
Examples
    The following example creates a dialog which the user can close.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
    mydialog.Sysmenu = true;
    mydialog.URL = "http://www.myaddress.com";
    mydialog.ShowDialog();
    </SCRIPT>
    

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

Back to top