FMX.Controls.TControl.OnKeyUp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnKeyUp: TKeyEvent read FOnKeyUp write FOnKeyUp;

C++

__property Fmx::Types::TKeyEvent OnKeyUp = {read=FOnKeyUp, write=FOnKeyUp};

Properties

Type Visibility Source Unit Parent
event public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Occurs when a key is released while the control has focus.

OnKeyUp also occurs when KeyUp is called.

Write an event handler for OnKeyUp to specify what happens when the control is in focus and a key is released.

See Also