Saves all images in buffer as a MultiPage TIFF file.

Namespace: Dynamsoft.DotNet.TWAIN
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public bool SaveAllAsMultiPageTIFF(
	string strFileName
)
Visual Basic
Public Function SaveAllAsMultiPageTIFF ( _
	strFileName As String _
) As Boolean

Parameters

strFileName
Type: System..::..String
The name of the MultiPage TIFF file to be saved. It should be a local path on the local disk.

Return Value

True indicates success. False indicates failure.

Remarks

Multi-Page TIFF is a built-in feature of Dynamic .NET TWAIN, no other DLLs are required.

Exceptions

ExceptionCondition
Dynamsoft.DotNet.TWAIN..::..TwainException When an error occurs and IfThrowException property is true, an exception will be thrown. When IfThrowException property is false, please check ErrorCode and ErrorString.

See Also