This documentation is for the old version. Go to the latest Upload Suite docs

ImageUploader.DropFilesHereText Property

Supported in: ActiveX , Java

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

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("DropFilesHereText", "Drop files here");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
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.

Note

If you want to specify a multiline text use the "\n" sequence to separate lines.

See Also

Manual

Reference