IIMCallback2::SendCharEvents (Windows Embedded CE 6.0)
1/6/2010
This method sends a series of WM_KEYUP or WM_KEYDOWN messages from the input method (IM) to the window with the focus.
Syntax
HRESULT SendCharEvents(
UINT uVK,
UINT uKeyFlags,
UINT uChars,
UINT* puShift,
UINT* puChars
);
Parameters
- uVK
Virtual key code sent in the first WM_KEYUP or WM_KEYDOWN message generated as a result of this method.
- uKeyFlags
Unsigned integer that contains flags describing the state of the first key sent by this method. These flags are translated into the lKeyData parameter of the first message. See Keybd.h for the legally defined values. If the KeyStateDownFlag bit is set, this method generates a WM_KEYDOWN message; otherwise, it generates a WM_KEYUP message.
- uChars
Number of characters in puChars.
- puShift
Pointer to a buffer containing the corresponding KEY_STATE_FLAGS for the characters in puChars. See Keybd.h for the legally defined values. These flags should be identical to the flags in uKeyFlags.
- puChars
Pointer to a buffer containing the all characters but the first one sent by this method.
Return Value
An appropriate HRESULT value is returned.
Remarks
This method allows the IM to determine its own keyboard layout, because it can associate any virtual key with any character and key state.
Another way to send characters to the active window is by means of the IIMCallback2::SendString and IIMCallback2::SendVirtualKey methods.
Unlike IInputMethod2::SendVirtualKey, this method does not affect the global key state.
Requirements
Header | sip.h |
Library | uuid.lib |
Windows Embedded CE | Windows CE 2.12 and later |
See Also
Reference
IIMCallback2
WM_CHAR
WM_KEYDOWN
WM_KEYUP
IIMCallback2::SendString
IIMCallback2::SendVirtualKey