Desktop Functions: Smart Device Functions:
|
CloseWindow (user32)
C# Signature:
[return: MarshalAs(UnmanagedType.Bool)] VB.NET Signature
<DllImport("user32.dll", SetLastError:=True)> _ VB Signature:
Private Declare Function CloseWindow Lib "user32" (ByVal Hwnd As IntPtr) As Boolean User-Defined Types:None. Notes:See user32.OpenWindowStation and user32.GetProcessWindowStation The CloseWindow function minimizes (but does not destroy) the specified window. To destroy a window, an application must use the DestroyWindow function. Tips & Tricks:Please add some! Sample Code:Please add some!. [Visual Basic.NET]
CloseWindow(Me.Handle) Alternative Managed API:Do you know one? Please contribute it! [C#.NET]
CloseWindow(this.Handle); Documentation:
Alternative Managed API:You can use the WindowState property of the Form class and set this to FormWindowState.Minimized. Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|