|
SKBINFO
- 0 2.0
Stores information about the current onscreen keyboard.
typedef struct {
HWND hwnd;
UINT nPad;
BOOL fVisible;
BOOL fMinimized;
RECT rect;
DWORD dwReserved;
} SKBINFO;
Members
hwnd
Handle of window for onscreen keyboard.
nPad
Current view of the keypad. Either SKB_FULL, SKB_BASIC, or SKB_NUMPAD for
full, basic, or numeric keypad, respectively.
fVisible
TRUE if the keyboard is available and visible, FALSE otherwise.
fMinimized
TRUE if the keyboard is minimized, FALSE otherwise.
rect
Screen coordinates or the restored keyboard rectangle.
dwReserved
Must be 0.
See Also
ShowKeyboard
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
|