Aurigma Image Uploader 6.5 Dual
ImageUploader.AdvancedDetailsPreviewThumbnailSize Property
Size of preview thumbnail in AdvancedDetails view mode.
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("AdvancedDetailsPreviewThumbnailSize", "64"); //...other params... iu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getImageUploader("ImageUploaderID").setAdvancedDetailsPreviewThumbnailSize(value);
value = getImageUploader("ImageUploaderID").getAdvancedDetailsPreviewThumbnailSize();Property Value
A positive integer value that specifies size of thumbnails in the AdvancedDetails view mode (in pixels). In other words, this property specifies size of square the thumbnail is inscribed in. This value should be in range [10, 250]. If the value is out of this range, it is truncated to the appropriate boundary.
Default value is "64".