FMX.ListBox.TListBoxSelector.DoItemStateChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoItemStateChanged(const Item: TListBoxItem; const UserChange: Boolean); virtual;

C++

virtual void __fastcall DoItemStateChanged(TListBoxItem* const Item, const bool UserChange);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TListBoxSelector

Description

A method that executes when the item state changes.

DoItemStateChanged accepts the following parameters:

  • Item: The affected list box item.
  • UserChange: A Boolean parameter that specifies whether the change is initiated by an user action (as opposed to by a code call).

ItemStateChanged calls DoItemStateChanged.

See Also