다음을 통해 공유


CWindow::IsIconic

창이 최소화 되 고 있는지 여부를 결정 합니다.

BOOL IsIconic( ) const throw();

설명

참조 IsIconic 에 있는 Windows SDK.

예제

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::IsIconic() to determine if the window is minimized

CWindow myWindow;
myWindow.Attach(hWnd);
BOOL bIconic = myWindow.IsIconic();

요구 사항

헤더: atlwin.h

참고 항목

참조

CWindow 클래스

CWindow::IsZoomed