Desktop Functions: Smart Device Functions:
|
closewindow (user32)
C# Signature:
[DllImport("user32.dll")] 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: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:[Visual Basic.NET]
CloseWindow(Me.Object.Handle) [C#.NET]
// Close the foreground window this should be CloseWindow(this.Handle); 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). |
|