Workarea Object



 
The Workarea object contains the size of the work area.


Members Table

    The following table lists the members provided by the Workarea object.

    Members
    Property Description
    Bottom Lower work area border.
    Left Left work area border.
    Right Right work area border.
    Top Upper work area border.

Remarks
    This object is available through the UserInterface object. Use the Workarea object to receive information about the work area of the window.
Examples
    The following example displays the position of the upper border of the work area.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteCafe.UserInterface.Workarea.Top);
    </SCRIPT>
    

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

Back to top