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