|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| shell32.lib
| Header File
| shellapi.h
| Unicode
| No
| Platform Notes
| None
|
|
|
DragQueryPoint
The DragQueryPoint function retrieves the position of the mouse pointer at the time a file was
dropped.
BOOL DragQueryPoint(
HDROP hDrop,
| // handle to structure for dropped file
| LPPOINT lppt
| // pointer to structure for mouse coordinates
| );
|
|
Parameters
hDrop
Identifies the structure describing the dropped file.
lppt
Points to a POINT structure that the function fills with the coordinates of the mouse pointer
at the time the file was dropped.
Return Values
If the drop occurred in the client area of the window, the return value is
nonzero.
If the drop did not occur in the client area of the window, the return value
is zero.
Remarks
The DragQueryPoint function fills the POINT structure with the coordinates of the mouse pointer at the time the user
released the left mouse button. The window for which coordinates are returned is
the window that received the WM_DROPFILES message.
See Also
DragQueryFile, POINT, WM_DROPFILES
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|