ClientHeight Property
The ClientHeight property contains the height of the client area inside the dialog window.
Syntax
[long=] SKHtmlDialog.ClientHeight
|
Possible Values
Long value that retrieves the height.
|
The property is read only.
Remarks
Examples
The following example creates and shows a dialog and displays the height of the client area in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.URL = "http://www.myaddress.com";
mydialog.Width = 400;
mydialog.Height = 400;
mydialog.Title = true;
mydialog.ShowDialog();
alert(mydialog.ClientHeight);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top