MinHeight Property
The MinHeight property contains the minimum height of the dialog window.
Syntax
SKHtmlDialog.MinHeight [=long]
|
Possible Values
Long value that specifies or retrieves the minimum height.
|
The property is read/write.
Remarks
Examples
The following example creates a dialog with a minimum height of 400 pixel.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.Title = true;
mydialog.Width = 500;
mydialog.Height = 500;
mydialog.MinHeight = 400;
mydialog.URL = "http://www.myaddress.com";
mydialog.ShowDialog();
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top