IIMCallback2::SendVirtualKey
A version of this page is also available for
4/8/2010
This method is called by the input method (IM) to simulate a keystroke or a virtual key. The key event is sent to the window that currently has the focus; that is, the window that would have received keyboard input if a key had been pressed on an external keyboard.
Syntax
HRESULT SendVirtualKey(
BYTE bVk,
DWORD dwFlags
);
Parameters
- bVk
Byte containing the virtual key code of the key to simulate.
dwFlags
Specifies the state of the key. The following table shows the possible values. These values can be used in combination.Value Description KEYEVENTF_KEYUP
If this flag is set, a call to SendVirtualKey generates a WM_KEYUP message. If this flag is not set, a call to SendVirtualKey generates a WM_KEYDOWN message.
KEYEVENTF_SILENT
If this flag is set, the key the user pressed to activate SendVirtualKey does not make a keyboard click sound, even if clicks are enabled on the device.
Return Value
An appropriate HRESULT value is returned.
Remarks
This function modifies the global key state for the virtual key sent in bVk. For example, an IM can use this method to send SHIFT, CTRL, and ALT key up and down events. These events are retrieved when an application calls the GetKeyState function. This method should send virtual key events that do not have associated characters; that is, it should not send VK_* messages that cause a WM_CHAR message to be sent in the TranslateMessage function. If a character-producing virtual key is sent by this method, the key is modified by the global key state. For example, an application can use this method to send a VK_5 message to the current application. If the SHIFT global key is currently down, the application receives the % character message, depending on the computer's keyboard driver. You can also send character messages and strings using the IIMCallback2::SendCharEvents and IIMCallback2::SendString methods. Call the IIMCallback2::SendCharEvents and IIMCallback2::SendString methods instead of the keybd_event function while programming an IM.
Requirements
Header | sip.h |
Library | uuid.lib |
Windows Embedded CE | Windows CE 2.12 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |
See Also
Reference
keybd_event
TranslateMessage
IIMCallback2::SendCharEvents
IIMCallback2::SendString