ClientTop Property



 
The ClientTop property contains the vertical position of the client area inside the dialog window.


Syntax

    [long=] SKHtmlDialog.ClientTop
Possible Values
    Long value that retrieves the position.

    The property is read only.
Remarks
    None.
Examples
    The following example creates and shows a dialog and displays the vertical position 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.Title = true;
    mydialog.ShowDialog();
    alert(mydialog.ClientTop);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top