ITfKeystrokeMgr::TestKeyUp method (msctf.h)
Determines if the keystroke manager will handle a key up event.
Syntax
HRESULT TestKeyUp(
[in] WPARAM wParam,
[in] LPARAM lParam,
[out] BOOL *pfEaten
);
Parameters
[in] wParam
Specifies the virtual-key code of the key. For more information about this parameter, see the wParam parameter in WM_KEYUP.
[in] lParam
Specifies the repeat count, scan code, extended-key flag, context code, previous key-state flag, and transition-state flag of the key. For more information about this parameter, see the lParam parameter in WM_KEYUP.
[out] pfEaten
Pointer to a BOOL that indicates if the key event is handled. If this value receives TRUE, the key event is handled and the event should not be forwarded to the application. If this value is FALSE, the key event is not handled and the event should be forwarded to the application.
Return value
This method can return one of these values.
Value | Description |
---|---|
|
The method was successful. |
|
No key event sinks are installed. |
|
One or more parameters are invalid. |
Remarks
An application can determine if a key event is handled by the keystroke manager with this method. If this method is successful and pfEaten receives TRUE, the application should call ITfKeystrokeMgr::KeyUp. If this method does not return S_OK or pfEaten receives FALSE, the application should not call ITfKeystrokeMgr::KeyUp . The following is an example of how this is implemented.
if(msg.message == WM_KEYUP)
{
if( pKeyboardMgr->TestKeyUp(msg.wParam, msg.lParam, &fEaten) == S_OK
&& fEaten
&& pKeyboardMgr->KeyUp(msg.wParam, msg.lParam, &fEaten) == S_OK
&& fEaten)
{
The key was handled by the keystroke manager or a text service. Do not pass the key to the application.
continue;
}
else
{
//Let the application process the key.
}
}
If the keystroke manager does not handle the key event, it passes the key event to the TSF text service by calling the TSF text service ITfKeyEventSink::OnTestKeyUp method.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps | UWP apps] |
Minimum supported server | Windows 2000 Server [desktop apps | UWP apps] |
Target Platform | Windows |
Header | msctf.h |
DLL | Msctf.dll |
Redistributable | TSF 1.0 on Windows 2000 Professional |