API: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 event.

FMX.ListView.TAppearanceListView.DoUpdateItemView inherits from FMX.ListView.TListViewBase.DoUpdateItemView. All content below this line refers to FMX.ListView.TListViewBase.DoUpdateItemView.

Dispatches the OnUpdateItemView event.

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.

See Also