PyCWnd.ShowWindow

int = ShowWindow(style)

Sets the visibility state of the window.

Parameters

style=win32con.SW_SHOWNORMAL : int

Specifies how the window is to be shown. It must be one of win32con.SW_HIDE, win32con.SW_MINIMIZE, win32con.SW_RESTORE, win32con.SW_SHOW, win32con.SW_SHOWMAXIMIZED win32con.SW_SHOWMINIMIZED, win32con.SW_SHOWMINNOACTIVE, win32con.SW_SHOWNA, win32con.SW_SHOWNOACTIVATE, or win32con.SW_SHOWNORMAL

MFC References

CWnd::ShowWindow

Return Value

Returns TRUE is the window was previously visible.