FMX.TreeView.TTreeView.OnChangeCheck
Delphi
property OnChangeCheck;
C++
__property OnChangeCheck;
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| event | published | FMX.TreeView.pas FMX.TreeView.hpp |
FMX.TreeView | TTreeView |
Description
Allows you to respond to changes in the checkbox state of a tree node, which is typically used for multi-selection or hierarchical selection scenarios.
Parameters
- Sender: The object that triggered the event. This is usually the
TTreeViewItemwhose checked state changed, not theTTreeViewcontrol itself. As such, the type is typicallyTTreeViewItem. - Node: The specific tree node whose checked state was changed.
- NewChecked: The new checked state (
TrueorFalse).