Vertical distance between thumbnails in the folder and upload panes.
Syntax
Initialize
| JavaScript | Copy Code
|
|---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("ThumbnailVerticalSpacing", "15"); //...other params... iu.writeHtml(); </script> |
|
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
getImageUploader("ImageUploaderID").setThumbnailVerticalSpacing(value);
value = getImageUploader("ImageUploaderID").getThumbnailVerticalSpacing();
|
|
Property Value
A non-negative integer value that specifies a vertical thumbnail spacing.
Default value is "15".
Copy Code