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

ImageUploader.ButtonPasteText Property

Supported in: ActiveX , Java

Text for the Paste button.

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

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setButtonPasteText(value);
value = getImageUploader("ImageUploaderID").getButtonPasteText();

Property Value

A string value that specifies the Paste button text. If an empty string is specified, the button becomes invisible.

Default value is "".

Remarks

This button pastes an image (not a file) from a clipboard to the upload list. It is especially convenient when you want enable users to upload screenshots.

This button can be used with ThreePanes layout only.

This property is necessary for localization of Image Uploader.

See Also

Manual

Reference