Text for the Paste button.

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("ButtonPasteText", "");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setButtonPasteText(value);
value = getImageUploader("ImageUploaderID").getButtonPasteText();
Property Value

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

Default value is "".

Remarks

This button pastes the image (not the 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

Examples
Localization

Reference
ButtonPasteImageFormat Property
PasteFileNameTemplate Property