Important: The information in this document is obsolete and should not be used for new development.
CyberMenuFocusLost
Notifies this Cyberdog service that the part associated with a Cyberdog service menu object has lost the focus.
void CyberMenuFocusLost (in ODFrame frame, in CyberMenuData menuData);
frame
- The frame that is losing the menu focus.
menuData
- A pointer to the service's menu data.
DISCUSSION
When a display part loses the menu focus and needs to display its menus, it calls its Cyberdog service menu object'sMenuFocusLost
method, which, in turn, calls this method. You can override this method to remove the menu items for this service when the display part loses the focus.If you subclass
CyberService
and override this method, your override must not call its inherited method; that is, your override method must implement this method's functionality completely.SEE ALSO
TheCyberMenuFocusAcquired
method (page 334).
TheCyberServiceMenu::MenuFocusLost
method (page 345).