|
PDEVENT
2.0
Provides details of the pointing-device event that is the subject of an
IN_PDEVENT notification. A pointing-device event can be a pen tap, mouse
double-click, and so on. This structure is returned by the IE_GETPDEVENT message.
typedef struct {
DWORD cbSize;
HWND hwnd;
UINT wm;
WPARAM wParam;
LPARAM lParam;
POINT pt;
BOOL fPen;
LONG lExInfo;
DWORD dwReserved;
} PDEVENT;
Members
cbSize
Size of this structure in bytes.
hwnd
Handle to ink edit window.
wm
Window WM_ message.
wParam
wParam of event.
lParam
lParam of event.
pt
Event point in ink edit client coordinates.
fPen
TRUE if pen event, FALSE if mouse event.
lExInfo
Windows GetMessageExtraInfo function return value.
dwReserved
Reserved.
Comments
Before using PDEVENT, an application must initialize cbSize with sizeof( PDEVENT ).
For descriptions of the WM_ messages that pertain to pen-based computing,
refer to Chapter 12, "Pen Application Programming Interface Messages."
See Also
IE_GETPDEVENT, IN_PDEVENT
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 Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|