Skip to main content
A newer version of this page is available.
All docs
V18.2

KeyboardHandlerServiceWrapper.OnKeyUp(KeyEventArgs) Method

Override this method to handle a key up event.

Namespace: DevExpress.Services

Assembly: DevExpress.Data.v18.2.dll

Declaration

public virtual void OnKeyUp(
    KeyEventArgs e
)

Parameters

Name Type Description
e KeyEventArgs

A KeyEventArgs object containing information about the released key and key modifiers.

Remarks

A KeyUp event occurs when a pressed key is released, after KeyDown and KeyPress events. The OnKeyUp method enables you to trap keys pressed when the control has focus.

See Also