CWnd::ArrangeIconicWindows
更新 : 2007 年 11 月
最小化されたすべての子ウィンドウを並べ替えます。
UINT ArrangeIconicWindows( );
戻り値
関数が正常終了した場合は、1 行のアイコンの高さを返します。それ以外の場合は 0 を返します。
解説
このメンバ関数は、画面全体に及ぶデスクトップ ウィンドウのアイコンも並べ替えます。GetDesktopWindow メンバ関数は、デスクトップ ウィンドウのオブジェクトへのポインタを取得します。
MDI クライアント ウィンドウにある最小化された MDI 子ウィンドウを並べ替えるには、CMDIFrameWnd::MDIIconArrange を呼び出します。
使用例
// arrange minimized MDI child windows
// called from menu item; CMdiChildFrame is derived from CMDIChildWnd
void CMdiChildFrame::OnActionArrangeIconicWindows()
{
UINT height = GetParent()->ArrangeIconicWindows();
TRACE(_T("height = %d\n"), height);
}
必要条件
ヘッダー : afxwin.h