SKResize ActiveX Control



 
This control enables resizing a SiteKiosk browser window or SKHTMLDialog.


Members Table

    The following table lists the members provided by the SKResize ActiveX control.

    Members
    Properties Description
    Enabled Whether resizing is enabled.
    ResizeMode Border or corner to resize.
    Visible Whether the resize icon is visible.

Remarks
    This ActiveX control is available in the form of scripts that can be used in combination with SiteKiosk. Use the SKResize control for resizing functionality in a SiteKiosk window or SKHTMLDialog. To initialize the ActiveX control use the OBJECT tag and, in particular, the classID to identify the control.

    Note that you can not resize the SiteKiosk main browser window.
CLSID
    A8103F81-00FF-45b9-995C-E7FF7D7FE8D8
Examples
    The following example displays an image that can be clicked to resize the current 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 v5.5 (and later versions).

Back to top