This documentation is for the old version. Go to the latest Upload Suite docs

ImageUploader.FolderPaneHeight Property

Supported in: ActiveX , Java

Height of the folder pane.

Syntax

Initialize

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("FolderPaneHeight", "234");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setFolderPaneHeight(value);
value = getImageUploader("ImageUploaderID").getFolderPaneHeight();

Property Value

A positive integer value that specifies the height of the folder pane (in pixels). If -1 specified, the folder pane height becomes the same as the height of Image Uploader (upload pane becomes invisible).

Default value is "234".

Remarks

This property makes sense only when the PaneLayout property is ThreePanes. In other modes the folder pane is either invisible or its height equals to the height of the Image Uploader itself.

See Also

Manual

Reference