AddThumbnailByHandle Method

Top  Previous  Next

The AddThumbnailByHandle method inserts thumbnail to the PDF document.  The thumbnail inserted can either be a Bitmap, Icon or a Metafile.

 

 

 

Syntax

 

 

[VC++]

void AddThumbnailByHandle(long Page, long Handle, long ImageType)

 

[CS]

public abstract new void AddThumbnailByHandle ( Int32 Page , Int32 Handle , TxgtImageType ImageType )

 

[VB]

Sub AddThumbnailByHandle(Page As Long, Handle As Long, ImageType As TxgtImageType)

 

 

 

 

Parameters

 

 

Page

[in] Page number to which thumbnail needs to be inserted.

 

 

Handle

[in] Handle to the thumbnail image that needs to be inserted.

 

 

ImageType

The type of the image that the Handle corresponds to, such as itBMP, itMetafile, itIcon. For Bitmap pass itBMP, for Metafile pass itMetafile, and for Icon pass itIcon.

 

 

 

 

See Tutorial-Thumbnails