FileDownloader.LogFileWriteErrorText Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Text string that appears in the download log to indicate a write error.

Syntax

Initialize

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
var fd = new FileDownloaderWriter("FileDownloaderID", 610, 500);
//...other params...
fd.addParam("LogFileWriteErrorText", "Write file error");
//...other params...
fd.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getFileDownloader("FileDownloaderID").setLogFileWriteErrorText(value);
value = getFileDownloader("FileDownloaderID").getLogFileWriteErrorText();

Property Value

A string value that specifies a text to be displayed in the download log if a write error occurred during file saving.

Default value is "Write file error".

Remarks

This property is necessary for localization of File Downloader.

See Also

Reference