FMX.Filter.TFilter.InputFilter
Delphi
property InputFilter: TFilter read FInputFilter write SetInputFilter;
C++
__property TFilter* InputFilter = {read=FInputFilter, write=SetInputFilter};
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;