ResizeMode Property
The ResizeMode property contains the resize mode.
Syntax
document.all["id_name"].ResizeMode [=long]
|
Possible Values
Long value that specifies or retrieves the resize mode.
|
The property is read/write.
Remarks
The possible values are:
1 : left border
2 : right border
3 : upper border
4 : upper left corner
5 : upper right corner
6 : lower border
7 : lower left corner
8 : lower right corner
Note that you can not resize the SiteKiosk main browser window.
Examples
The following example displays an image that can be clicked to resize the lower right corner of the current window.
<html>
<body>
<OBJECT ID="SKResize" width="16" height="16"
CLASSID="CLSID:A8103F81-00FF-45b9-995C-E7FF7D7FE8D8">
<PARAM NAME="ImageFile" VALUE=".\skins\default\img\myimage.gif">
<PARAM NAME="ResizeMode" VALUE="8">
</OBJECT>
Click the icon the resize the window.
</body>
</html>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top