Height Property



 
The Height property contains the height of the dialog window.


Syntax

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

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

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

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

Back to top