This property is obsolete.

Switch that specifies whether to display rotate icons on preview thumbnails.

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

A boolean value (true or false). If true, rotate icons (arrows) are visible when the user hovers a mouse cursor over the thumbnail, and therefore the user can rotate the images. Otherwise, these icons are not displayed and the user cannot rotate the images manually.

Default value is "true".

Remarks

This property is obsolete. It works for backward compatibility only. Use the AllowRotate property instead. AllowRotate has absolutely the same functionality.

See Also