Text of the label on the upload pane displayed when no files are selected for the upload.

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("DropFilesHereText", "Drop files here");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setDropFilesHereText(value);
value = getImageUploader("ImageUploaderID").getDropFilesHereText();
Property Value

A string value which specifies a caption of the Drop Files Here label.

Default value is "Drop files here".

Remarks

This property can be used with OnePane and ThreePanes layout. For more infomation read Layouts article.

This property is necessary for localization of Image Uploader.

See Also

Examples
Localization

Reference
DropFilesHereImageFormat Property