IHYMenuController
From RemObjects Software
This is a Hydra Architecture entry
Feel free to add your notes to this topic below.
Overview
The IHYMenuController interface defines the standard interface all menu controllers need to implement.
File
uHYIntf
Declaration
IHYMenuController = interface(IHYUpdateableController);
Hierarchy
- IInterface
- IHYUpdateableController
- IHYMenuController
- IHYUpdateableController
Properties
| | | |
|---|---|---|
| Items |
The Items property provides access to the IHYMenuItem list owned by the menu controller. |
Methods
| | |
|---|---|
| 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
