JVCL Help:TJvChangeItems.Items

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

Search in JVCL Help

 
Search in all projects
 

Summary

Provides indexed access to the items in the list.


Pascal

 propertyItems [Index: Integer]: TJvChangeItem;


Description

Use Items to get access to individual TJvChangeItem objects using an index. The allowable range for the index is between 0 and Items.Count - 1. Since Items is the default property of TJvChangeItems, you can call it with or without the Items qualifier from a TJvChangeNotify component:
Example: JvChangeNotify1.Notifications.Items[i] := SomeValue;

 Equivalent:
 JvChangeNotify1.Notifications[i] := SomeValue; 


See Also

TJvChangeItem, TJvChangeNotify, TJvChangeNotify.Notifications


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