This structure is used by IG_gui_save_page_dlg and IG_gui_save_image_dlg 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.
Copy Code
|
|
---|---|
typedef struct tag AT_IGGUI_SAVEFILE_INFO
{
CHAR FileName[_MAX_PATH];
BOOL bOverwrite;
AT_MODE nFormat;
AT_IGGUI_SAVEPAGE_INFO PageInfo;
} AT_IGGUI_SAVEFILE_INFO;
|
Name | Type | Description |
---|---|---|
FileName | CHAR[_MAX_PATH] | The name of file where to save. |
bOverwrite | BOOL | If TRUE then current file will be deleted first. |
nFormat | AT_MODE | Format ID to save. |
PageInfo | AT_IGGUI_SAVEPAGE_INFO | Used only if bInsertPage=TRUE. A pointer to the AT_IGGUI_SAVEPAGE_INFO structure. |