Handle Property
The Handle property contains the window handle of the dialog.
Syntax
[long=] SKHtmlDialog.Handle
|
Possible Values
Long value that retrieves the handle of the window.
|
The property is read only.
Remarks
Examples
The following example creates a dialog and shows its window handle.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.URL = "http://www.myaddress.com";
mydialog.ShowDialog();
alert("Window handle: " + mydialog.Handle);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top