JVCL Help:TJvFullColorList.OnChange

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Event triggered when the list is changed.


Pascal

 TJvFullColorListOperation = (
foAllChanged,
foDeleted,
foAdded,
foChanged
);
TJvFullColorListEvent = procedure (Sender: TObject; Index: Integer; Operation: TJvFullColorListOperation) ofobject;
propertyOnChange: TJvFullColorListEvent;


Parameters

Parameters Description
Operation Operation that changed this item.
Index Index of the changed item.
Sender List that send the event.


Description

Operation gives informations about the operation made on the item. If Operation is foAllChanged, all items are changed in the list, Index is not useful. If Operation is foDeleted, an item was deleted, Index is the old index of this item in the list. If Operation is foAdded, an item was added, Index is the index of this item in the list. If Operation is foChanged, an item was changed, Index is the index of this item in the list.
No event is triggered if UpdateCount is not 0.


About

Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page