The leading provider of version control solutions and TWAIN SDKs
  • Contact us









FTPUploadAllAsMultiPageTIFF Method

Description

Uploads all images in buffer to the FTP server as Multi-Page TIFF.

ActiveX Edition Plug-in Edition Mac Edition
Since V4.0 Since V4.0 Since V6.4

Syntax

Boolean ObjectName. FTPUploadAllAsMultiPageTIFF(String FTPServer, String FileName)

Parameters

String FTPServer: the name of the FTP server.

String FileName: the name of the image to be uploaded. It should be a relative path on the FTP server.

Return value

Boolean.

TRUE indicates success. FALSE indicates failure.

When an error occurs and IfThrowException property is TRUE, an exception will be thrown.

When FALSE is returned or an exception is thrown, check ErrorCode property and ErrorString property for error information.

Remarks

None.

See also

FTPUserName property, FTPPassword property, FTPPort property, ProxyServer property, FTPDownload(), FTPUpload(), HTTPPort property, HTTPUserName property, HTTPPassword property, HTTPDownload(),, HTTPUploadThroughPost(), HTTPUploadThroughPut(), HTTPUploadAllThroughPostAsMultiPageTIFF(), HTTPUploadAllThroughPutAsMultiPageTIFF()

Sample

A JavaScript sample is provided.

<script language="javascript">

	function btnFTPUploadAllAsMultiPageTIFF_onclick() {
		Webcam.FTPUploadAllAsMultiPageTIFF("192.168.1.20", "/Webcam/Images/ImageData.tif");
	}
	
</script>