ArrangeIconicWindows

ArrangeIconicWindows

VB声明

Declare Function ArrangeIconicWindows Lib "user32" Alias "ArrangeIconicWindows" (ByVal hwnd As Long) As Long

说明

排列一个父窗口的最小化子窗口(在vb里使用:用于在桌面排列图标,用GetDesktopWindow函数获得桌面窗口的一个句柄)

返回值

Long,图标行的高度;如失败,则返回零。会设置GetLastError

参数表

参数

类型及说明

hwnd

Long,父窗口的句柄

注解

也可将该函数用于包含了图标化子窗口的的定制控件

Top