SiteKiosk Documentation
One Step Back

Resize Event




Fires when the control has been resized.


Syntax

    function id_name::Resize(width, height)
Parameters
    widthLong value that contains the new width.
    heightLong value that contains the new height.
Remarks
    None.
Examples
    The following example shows an alert window when the control has been resized.

    <html>
    <body>
    <OBJECT ID="SiteKioskBrowserCtrl" width="200" height="200"
    CLASSID="CLSID:6D23BE7D-A688-4F87-AC0E-1E6236F07990">
    </OBJECT>
    <SCRIPT TYPE="text/javascript">
    function SiteKioskBrowserCtrl::Resize(width, height)
    {
       alert(width + " / " + height);
    }
    </SCRIPT>
    </body>
    </html>
    

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

Back to topBack to top

© 1997-2010 PROVISIO - Aventura, USA & Muenster, Germany - SiteKiosk DevTeam