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
    BottomProperty Lower work area border.
    LeftProperty Left work area border.
    RightProperty Right work area border.
    TopProperty Upper work area border.

Remarks
    This object is available through the SiteKioskUI object. Use the Workarea object to handle the work area of the window.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example displays the upper border of the work area in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.SiteKioskUI.Workarea.TopProperty);
    </SCRIPT>
    

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

Back to top