Left Property
The Left property contains the horizontal position of the dialog window.
Syntax
SKHtmlDialog.Left [=long]
|
Possible Values
Long value that specifies or retrieves the position.
|
The property is read/write.
Remarks
Examples
The following example creates a dialog and displays it at the position 100, 100.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.Height = 150;
mydialog.URL = "http://www.myaddress.com";
mydialog.Title = true;
mydialog.Left = 100;
mydialog.Top = 100;
mydialog.ShowDialog();
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top