CWnd::ArrangeIconicWindows

最小化されたすべての子ウィンドウを並べ替えます。

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

参照

関連項目

CWnd クラス

階層図

CWnd::GetDesktopWindow

CMDIFrameWnd::MDIIconArrange

ArrangeIconicWindows