This function is called to create a GUI thumbnail window.
Declaration:
Copy Code | |
---|---|
AT_ERRCOUNT ACCUAPI IG_GUI_thumbnail_window_create_ex ( HWND hWndParent, DWORD dwStyle, LPSTR lpszTitle, INT nX, INT nY, INT nWidth, INT nHeight, HWND FAR* lphWndThumbnail ); |
Arguments:
Name | Type | Description |
hWndParent | HWND | Handle of the Parent window. |
dwStyle | DWORD | Set to any Windows style bits that you would like the Pan window to have. This parameter can be a combination of window styles ORed together. |
lpszTitle | LPSTR | Title of the Thumbnail window. |
nX | INT | X position of the window's upper left corner. |
nY | INT | Y position of the window's upper left corner. |
nWidth | INT | Width of the window. |
nHeight | INT | Height of the window. |
lphWndMagnify | HWND FAR* | Far pointer to the HWND object to hold Thumbnail window's handle. |
Return Value:
Returns the number of ImageGear errors that occurred during this function call.
Supported Raster Image Formats:
This function does not process image pixels.
Sample:
None
Remarks:
A GUI thumbnail window allows your application to display thumbnails of images stored in image files. It also allows you to easily select and sort them.
See also functions IG_GUI_thumbnail_attribute_get(), IG_GUI_thumbnail_attribute_set(), IG_GUI_thumbnail_file_append(), IG_GUI_thumbnail_dir_append(), and the other IG_GUI_thumbnail_...() functions. |