Switch that specifies whether clicking on rotate icon of a list item will rotate all selected items.

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("AllowMultipleRotate", "false");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setAllowMultipleRotate(value);
value = getImageUploader("ImageUploaderID").getAllowMultipleRotate();
Property Value

A boolean value (true or false). If true, when the user clicks the rotate icon on the thumbnail, all selected items will be rotated. Otherwise Image Uploader will rotate only the item an icon is clicked at.

Default value is "false".

See Also

Reference
AllowAutoRotate Property
AllowRotate Property
FolderPaneAllowRotate Property
UploadFileAngle Property
UploadPaneAllowRotate Property