Border style of the upload 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("UploadPaneBorderStyle", "Fixed3D");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setUploadPaneBorderStyle(value);
value = getImageUploader("ImageUploaderID").getUploadPaneBorderStyle();
Property Value

A member of this enumeration that specifies a border style of the upload pane:

String value Integer value Description
None 0 No border.
Fixed3D 1 3D-like border style.
FixedSingle 2 Classic single line border style.

If unsupported string value is passed, it is interpreted as None.

NoteNote

When you get this property value through the JavaScript, integer value will be returned (even if you initialize the property with a string value).

Default value is "Fixed3D".

See Also

Examples
One Pane Layout
Three Panes Layout

Reference
FolderPaneBorderStyle Property
TreePaneBorderStyle Property
UploadPaneAllowRotate Property
UploadPaneBackgroundColor Property
UploadPaneShowDescriptions Property
UploadPaneSortMode Property
UploadView Property
ParentControlName Property