Top Property



 
The Top property contains the vertical position of the dialog window.


Syntax

    SKHtmlDialog.Top [=long]
Possible Values
    Long value that specifies or retrieves the position.

    The property is read/write.
Remarks
    None.
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