IsIconic
This function checks if window is minimized.
BOOL IsIconic( )
Return TRUE if the window is minimized, otherwise, FALSE..
EX1
int Window_IsIconic_ex1() { WorksheetPage myDlg = Project.WorksheetPages(0); Window winDlg = myDlg.GetWindow(); if (winDlg.IsIconic()) out_str("window is minimized."); else out_str("window is not minimized."); return 0; }
origin.h