FMX.ListBox.TListBoxSelector.MouseSelectFinishing
Object Pascal
procedure MouseSelectFinishing(const Item: TListBoxItem; const Button: TMouseButton; const Shift: TShiftState); virtual;
C++
virtual void __fastcall MouseSelectFinishing(TListBoxItem* const Item, const System::Uitypes::TMouseButton Button, const System::Classes::TShiftState Shift);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.ListBox.pas FMX.ListBox.hpp |
FMX.ListBox | TListBoxSelector |
Description
A method that is executed after a click on a mouse button in a list box component, before the OnItemClick event of the list box component occurs.
MouseSelectFinishing receives the following parameters:
- <Item> is the target list box item.
- <Button> is the clicked mouse button.
- <Shift> is the current shift state.
MouseSelectFinishing calls DoMouseSelectFinishing.