TcxCustomShellListView.OnChange Event
In This Article
Occurs after an item was changed.
#Declaration
Delphi
property OnChange: TLVChangeEvent read; write;
#Remarks
The OnChange
event occurs when a shell item changes. The item that has been changed and the type of changes that occurred are specified via the Item
and Change
parameters, respectively.
The following table lists all the possible types of changes (values of the Change parameter).
Value | Description |
---|---|
ct |
The item’s Caption property has been changed. |
ct |
The item’s Image |
ct |
The item’s Cut, Focused or Selected properties have been changed. |
See Also