FMX.ListView.TAppearanceListView.DoButtonClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoButtonClick(const Sender: TObject; const AItem: TListItem; const AObject: TListItemSimpleControl); virtual;

C++

virtual void __fastcall DoButtonClick(System::TObject* const Sender, Fmx::Listview::Types::TListItem* const AItem, Fmx::Listview::Types::TListItemSimpleControl* const AObject);

Properties

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

Description

Dispatches the OnButtonClick event.

DoButtonClick receives the following parameters:

DoButtonClick passes the received AItem and AObject to the event handler of OnButtonClick, but it passes itself as the value of the Sender parameter instead of passing the received Sender.

See Also