Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

CloseWindow (user32)
 
.
Summary
Summary

C# Signature:

    [return: MarshalAs(UnmanagedType.Bool)]
    [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
    [DllImport("user32", CharSet = CharSet.Unicode, SetLastError = true)]
    public static extern bool CloseWindowStation(IntPtr hWinsta);

[DllImport("user32.dll")]
static extern bool CloseWindow(IntPtr hWnd);

VB.NET Signature

<DllImport("user32.dll", SetLastError:=True)> _
Private Shared Function CloseWindow(ByVal hWnd As IntPtr) As Integer
End Function

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.

Documentation
CloseWindow on MSDN

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions