FMX.Edit.TCustomEdit.FilterChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FilterChar: string read GetFilterChar write SetFilterChar;

C++

__property System::UnicodeString FilterChar = {read=GetFilterChar, write=SetFilterChar};

Properties

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

Description

Specifies which characters are allowed to be typed into this edit control.

The FilterChar property specifies a string containing individual characters that are allowed to be typed into this edit control.

For instance, if you set FilterChar to '123abc', then only the a, b, and c letters and the 1, 2, and 3 numerals are allowed to be typed into this edit control. All other characters are ignored. However, note that the uppercase version of a, b, and c are not allowed by this filter string. If you want to add uppercase variants, then FilterChar should be set to '123abcABC'.

To allow for all characters, set FilterChar to an empty string ('').

See Also