Border Property



 
The Border property indicates if the dialog contains a border.


Syntax

    SKHtmlDialog.Border [=bool]
Possible Values
    Boolean value that specifies or retrieves if a
    border is shown or not.

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

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

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

Back to top