Exports all embedded files to a directory (the embedded file names will be used for the output filenames). If an embedded file is an image file, it will be modified if the image width is larger than Width pixel. If an embedded file is not an image file, it will be exported unmodified.

Namespace:  InfigoSDK
Assembly:  InfigoSDK (in InfigoSDK.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool ExportAllFiles(
	string strDirectory,
	short nWidth
)
Visual Basic (Declaration)
Public Function ExportAllFiles ( _
	strDirectory As String, _
	nWidth As Short _
) As Boolean
Visual C++
public:
bool ExportAllFiles(
	String^ strDirectory, 
	short nWidth
)

Parameters

strDirectory
Type: System..::.String
The output directory.
nWidth
Type: System..::.Int16
The maximum width an image file can have without modifying it. Larger images are scalled down to Width.

Return Value

Returns true on success.

See Also