.
The IsIconic API
3/16/2007 8:27:25 AM - wsullivan@youknowwhatparttoremovedoceserve.com-207.59.153.88
.
static extern bool IsIconic(IntPtr hWnd);
.
Private Declare Auto Function IsIconic Lib "user32.dll" (ByVal hwnd As IntPtr) As Boolean
.
public static extern bool IsIconic( IntPtr Hwnd );
.
if ( IsIconic( Hwnd ) )
.
private static extern bool IsIconic(IntPtr hWnd);
.
if (IsIconic(hWnd))
.