MCPcopy
hub / github.com/cluic/wxauto / keybd_event

Function keybd_event

wxauto/uiautomation.py:1826–1828  ·  view source on GitHub ↗

keybd_event from Win32.

(bVk: int, bScan: int, dwFlags: int, dwExtraInfo: int)

Source from the content-addressed store, hash-verified

1824
1825
1826def keybd_event(bVk: int, bScan: int, dwFlags: int, dwExtraInfo: int) -> None:
1827 """keybd_event from Win32."""
1828 ctypes.windll.user32.keybd_event(bVk, bScan, dwFlags, dwExtraInfo)
1829
1830
1831def PostMessage(handle: int, msg: int, wParam: int, lParam: int) -> bool:

Callers 4

SendKeyFunction · 0.85
PressKeyFunction · 0.85
ReleaseKeyFunction · 0.85
SendKeysFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected