FMX.ListView.TAppearanceListView.DoUpdateItemView

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoUpdateItemView(const AListItem: TListItem); override;

C++

virtual void __fastcall DoUpdateItemView(Fmx::Listview::Types::TListItem* const AListItem);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.ListView.pas
FMX.ListView.hpp
FMX.ListView TAppearanceListView

Description

Dispatches the OnUpdateItemView and OnUpdateObjects events.

DoUpdateItemView receives a single parameter, AItem, which is the target list view item.

DoUpdateItemView passes itself (as the Sender parameter) and the received AItem to the event handler of OnUpdateItemView.
If AItem is an instance of TListViewItem, DoUpdateItemView also passes itself (as the Sender parameter) and the received AItem to the event handler of OnUpdateObjects.

See Also