Width Property



 
The Width property contains the width of the dialog window.


Syntax

    SKHtmlDialog.Width [=long]
Possible Values
    Long value that specifies or retrieves the width
    of the window.

    The property is read/write.
Remarks
    None.
Examples
    The following example creates a dialog with a width of 150 pixel.

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

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

Back to top