[This is preliminary documentation and is subject to change.]

Create the thumbnail from the inFilePath and store it in outFilePath.

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static int CreateThumbnail(
	string inFilePath,
	string outFilePath
)
Visual Basic (Declaration)
Public Shared Function CreateThumbnail ( _
	inFilePath As String, _
	outFilePath As String _
) As Integer
Visual C++
public:
static int CreateThumbnail(
	String^ inFilePath, 
	String^ outFilePath
)

Parameters

inFilePath
Type: System..::.String
The file where the input image file is.
outFilePath
Type: System..::.String
The file where the output image file is.

Return Value

0 if thumbnail is created correctly -1 if the thumbnail could not be stored in the file system -2 the input file is not in the proper format -3 if there is an unknown error

See Also