 
            This function may be called to update (repaint) the magnify window (e.g., if the image being displayed in its parent window has changed).
| 
                        Copy Code
                     | |
|---|---|
| 
AT_ERRCOUNT ACCUAPI IG_GUI_magnify_update ( 
        HIGEAR hIGear, 
        DWORD dwGrpID, 
        HWND hWNDMagnify 
);
 | |
| Name | Type | Description | 
|---|---|---|
| hIGear | HIGEAR | HIGEAR handle of image. | 
| dwGrpID | DWORD | Identifier of group which is used for drawing image in the parent window. | 
| hWndMagnify | HWND | Handle of GUI Magnify window. | 
Returns the number of ImageGear errors that occurred during this function call.
All pixel formats supported by ImageGear for C and C++.
Display, GUI Windows
| 
                        Copy Code
                     | |
|---|---|
| HIGEAR hIGear; /* Global HIGEAR handle of image in parent window */ HWND hWndMagnify;/* Global HIGEAR handle of Magnify window */ IG_GUI_magnify_update ( hIGear, IG_GRP_DEFAULT, hWndMagnify ); | |