Visible Property



 
The Visible property indicates whether the resize control is visible.


Syntax

    document.all["id_name"].Visible [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the visibility.

    The property is read/write.
Remarks
    Note that you can not resize the SiteKiosk main browser window.
Examples
    The following example displays a resize icon that can be used to resize a SiteKiosk window.

    <html>
    <body>
    <OBJECT ID="SKResize" width="16" height="16"
    CLASSID="CLSID:A8103F81-00FF-45b9-995C-E7FF7D7FE8D8">
      <PARAM NAME="Enabled" VALUE="1">
      <PARAM NAME="ResizeMode" VALUE="8">
      <PARAM NAME="Visible" VALUE="1">
    </OBJECT>
    Click the icon the resize the window.
    </body>
    </html>
    

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

Back to top