API:FMX.ListBox.TListBox.OnChangeCheck

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnChangeCheck: TNotifyEvent read FOnChangeCheck write FOnChangeCheck;

C++

__property OnChangeCheck;

Properties

Type Visibility Source Unit Parent
event published
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TListBox

Description

Occurs when the check box attached to a list item changes its state.

FMX.ListBox.TListBox.OnChangeCheck inherits from FMX.ListBox.TCustomListBox.OnChangeCheck. All content below this line refers to FMX.ListBox.TCustomListBox.OnChangeCheck.

Occurs when the check box attached to a list item changes its state.

Write an OnChangeCheck event handler to take specific action after the check box attached to an item changes its state from selected to cleared or vice versa.

To make the check boxes attached to the list items visible, set the ShowCheckboxes property to True.

See Also