FMX.Forms.TCommonCustomForm.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.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

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

OnKeyUp also occurs when KeyUp is called.

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

See Also