FMX.Filter.TFilter.InputFilter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property InputFilter: TFilter read FInputFilter write SetInputAsFilter;

C++

__property TFilter* InputFilter = {read=FInputFilter, write=SetInputAsFilter};

Properties

Type Visibility Source Unit Parent
property public
FMX.Filter.pas
FMX.Filter.hpp
FMX.Filter TFilter

Description

Use InputFilter with a stack of filters when you want to put the result of one filter in the input of another filter.

For example, if the result of Filter1 is used in Filter2, the code will look like this:

 Filter2.InputFilter := Filter1;

See Also