JVCL Help:TJvOutlookBarButtons.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 buttons in the list.


Pascal

 propertyItems [Index: Integer]: TJvOutlookBarButton;


Description

Use Items to get indexed access to the buttons in the list. To iterate over the buttons, use Items along with the Count property to determine the number of items. Since Items is the default property for TJvOutlookBarButtons, you can leave it out in code when you want to access the items.
JvOutlookBar1.Pages[0].Buttons.Items[0].Caption := 'OK';
Equivalent:
JvOutlookBar1.Pages[0].Buttons[0].Caption := 'OK';


See Also

,


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