FMX.ListView.Appearances.TAppearanceListViewItems.CheckAll

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure CheckAll(const AChecked: Boolean = True); overload;
procedure CheckAll(const ACallback: TFunc<Integer, Boolean>; const AChecked: Boolean = True); overload;

C++

void __fastcall CheckAll(const bool AChecked = true)/* overload */;
void __fastcall CheckAll(const System::DelphiInterface<System::Sysutils::TFunc__2<int,bool> > ACallback, const bool AChecked = true)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.ListView.Appearances.pas
FMX.ListView.Appearances.hpp
FMX.ListView.Appearances TAppearanceListViewItems

Description

Marks all the list view items as Checked.

CheckAll changes the state of all the list view items so that they are selected.

See Also