FMX.ListView.TListView.SearchVisible

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SearchVisible: Boolean read FSearchVisible write SetSearchVisible default 0;

C++

__property SearchVisible = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.ListView.pas
FMX.ListView.hpp
FMX.ListView TListView

Description

Shows a search box on top of your list view that can filter the content of the list.

FMX.ListView.TListView.SearchVisible inherits from FMX.ListView.TListViewBase.SearchVisible. All content below this line refers to FMX.ListView.TListViewBase.SearchVisible.

Set SearchVisible to True to show a search box on top of your list view

Shows a search box on top of your list view that can filter the content of the list.

To access the search box control from code, simply loop trough the controls of your list view until you find an instance of TSearchBox. For an example, see the code snippet at FMX.ListView.TListViewBase.OnSearchChange.

See Also