Height of the folder pane.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("FolderPaneHeight", "300");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
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 "300".

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

Examples
Customizing Appearance
Changing Background Colors for Panes
Customizing Upload Pane
Two Panes Layout
Three Panes Layout

Reference
PaneLayout Property
PaneResize Event
TreePaneWidth Property
FolderPaneAllowRotate Property
FolderPaneBackgroundColor Property
FolderPaneBorderStyle Property
FolderPaneShowDescriptions Property
FolderPaneSortMode Property
FolderView Property