ScrollBars Property



 
The ScrollBars property indicates if the dialog contains scrollbars.


Syntax

    SKHtmlDialog.ScrollBars [=bool]
Possible Values
    Boolean value that specifies or retrieves if
    scrollbars should be used or not.

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

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

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

Back to top