This structure is used by IG_gui_save_page_dlg_W and IG_gui_save_image_dlg_W functions, along with the AT_IGGUI_SAVEPAGE_INFO structure, to return the file name, the page number to save or replace, and also the format identifier if the file format of the image is detected.
Declaration:
|
Copy Code |
typedef struct tag AT_IGGUI_SAVEFILE_INFO_W
{
LPAT_WCHAR lpFileName;
BOOL bOverwrite;
AT_MODE nFormat;
AT_IGGUI_SAVEPAGE_INFO PageInfo;
} AT_IGGUI_SAVEFILE_INFO_W;
|
Members:
Name |
Type |
Description |
lpFileName |
LPAT_WCHAR |
Pointer to the file name to be used for saving. |
bOverwrite |
BOOL |
If TRUE then the whole existing file will be overwritten. |
nFormat |
AT_MODE |
Format Format ID to save as. |
PageInfo |
AT_IGGUI_SAVEPAGE_INFO |
Used only if bInsertPage=TRUE. A pointer to the AT_IGGUI_SAVEPAGE_INFO structure. |