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

Search Results for "GetCapture" in [All]

aygshell

.

public static extern IntPtr GetCapture();

.

   IntPtr hwnd = GetCapture();

.

Use this in conjunction with the SetCapture/GetCapture HWND sample:

user32

.
Summary
.

static extern IntPtr GetCapture();

.
Documentation
[GetCapture] on MSDN

coredll

.

static extern IntPtr GetCapture();

.

Declare Function GetCapture Lib "coredll.dll" () As IntPtr

.

You can use GetCapture in conjunction with SetCapture to obtain the window handle of a Control. See the sample code below.

.

   IntPtr hOldWnd = GetCapture();

.

   IntPtr hWnd = GetCapture();

.

    IntPtr hWnd = GetCapture();

.

static extern IntPtr GetCapture();

.
Documentation
[GetCapture] on MSDN
.

You can use SetCapture in conjunction with GetCapture to obtain the window handle of a Control. See the sample code below.

.

   IntPtr hOldWnd = GetCapture();

.

   IntPtr hWnd = GetCapture();

.

        // hWnd = GetCapture();


 
Access PInvoke.net directly from VS: