FMX.Types.TCanFocusEvent
Delphi
TCanFocusEvent = procedure(Sender: TObject; var ACanFocus: Boolean) of object;
C++
typedef void __fastcall (__closure *TCanFocusEvent)(System::TObject* Sender, bool &ACanFocus);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
type typedef |
public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Procedural type that is used for all OnCanFocus event types.
A TCanFocusEvent event handler must be called with the following parameters:
Sender
--a pointer to the object that called this function.ACanFocus
--a Boolean value that specifies whether the object can receive focus.