IHYToolbarController
From RemObjects Software
This is a Hydra Architecture entry
Feel free to add your notes to this topic below.
Overview
The IHYToolbarController interface defines the standard interface that all toolbar controllers need to implement.
File
uHYIntf
Declaration
IHYToolbarController = interface(IHYUpdateableController);
Hierarchy
- IInterface
- IHYUpdateableController
- IHYToolbarController
- IHYUpdateableController
Properties
| | | |
|---|---|---|
| Count | Returns the number of toolbars owned by the controller. | |
| Items | Used to access the toolbars owned by the controller. |
Methods
| | |
|---|---|
| Add | Used to add a new toolbar at the end of the list identified by the Items array property. |
| Insert | Used to insert a new toolbar at the anIndex position within the list identified by the Items array property. |
| AddReference | Inherited from IHYUpdateableController
Supplying AddReference calls within BeginUpate and EndUpdate pairs allows the subsequent deletion of all added items via a single call to DeleteUpdates. |
| BeginUpdate | Inherited from IHYUpdateableController
Call BeginUpdate prior to call(s) to AddReference. Each BeginUpdate must have an associated EndUpdate. Items added by AddReference can subsequently be removed by a single call to DeleteUpdates. |
| DeleteUpdates | Inherited from IHYUpdateableController
DeleteUpdates removes all items added to the host's menu and toolbars via AddReference calls. See BeginUpdate and EndUpdate also. |
| EndUpdate | Inherited from IHYUpdateableController
Call EndUpdate following call(s) to AddReference preceded by BeginUpdate. Items added by AddReference can subsequently be removed by a single call to DeleteUpdates. |
| GetUpdateCount | Inherited from IHYUpdateableController
Call GetUpdateCount to retrieve the number of items manually added to the host's menu and toolbars. |
See Also
Lists — Glossary — Features — How To — Components — Tools — Samples — Articles — Architecture — Issues
Categories: Text | Hydra | Architecture | Interface | Delphi
