Title Property



 
The Title property indicates if the title bar is to be shown.


Syntax

    SKHtmlDialog.Title [=bool]
Possible Values
    Boolean value that specifies or retrieves if a
    title is to be shown or not.

    The property is read/write.
Remarks
    None.
Examples
    The following example creates a dialog with a title bar and shows it.

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

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

Back to top