Handle Property
The Handle property contains the region handle.
Syntax
Possible Values
Long value that retrieves the region handle.
|
The property is read only.
Remarks
Examples
The following example creates a HTML dialog with round corners.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.URL = "http://www.sitekiosk.com";
mydialog.Title = true;
dlgw = mydialog.Width;
dlgh = mydialog.Height;
myregion = SiteKiosk.SiteKioskUI.CreateRegion();
myregion.AddRoundRect(0, 0, dlgw, dlgh, 12, 12, "and");
mydialog.Region = myregion.Handle;
mydialog.ShowDialog();
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top