FMX.Edit.TCustomEdit.Typing

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Typing: Boolean read GetTyping write SetTyping default False;

C++

__property bool Typing = {read=GetTyping, write=SetTyping, default=0};

Properties

Type Visibility Source Unit Parent
property public
FMX.Edit.pas
FMX.Edit.hpp
FMX.Edit TCustomEdit

Description

Specifies whether the user is typing something in this edit control.

The Typing property is True if the user is typing something into this edit control, False otherwise.

When any printable character is typed, the Typing property is set to True. A printable character is any character that is not a control character. When the ENTER key is pressed, the Typing property is set to False.

See Also