WMRBUTTONDOWN
WMRBUTTONDOWN is often encountered as a mnemonic or alias in discussions and wrappers for the Windows API, but the official Windows message for this event is WM_RBUTTONDOWN. The latter is a standard window message sent to a window procedure when the user presses the right mouse button within the window’s client area. WMRBUTTONDOWN itself is not a formal constant defined in the Windows headers, yet some documentation or libraries may reference it informally as a shorthand for the same event.
When a window procedure receives the WM_RBUTTONDOWN message, it indicates that the right mouse button has been
Typical handling in code involves a window procedure dispatching on WM_RBUTTONDOWN to implement right-click behavior. If
Related messages include WM_RBUTTONUP, WM_LBUTTONDOWN, WM_MBUTTONDOWN, and WM_CONTEXTMENU, all of which participate in standard mouse interaction