Important: The information in this document is obsolete and should not be used for new development.
ShowCyberItem
Displays the content referenced by the specified Cyberdog item in this display part.
void ShowCyberItem (in CyberItem item);
item
- The Cyberdog item to display.
DISCUSSION
This method is called by theCyberSession::SelectCyberItemWindow
method to notify a Cyberdog display part to display the specified Cyberdog item. This method differs fromOpenCyberItem
; you callShowCyberItem
once you have determined (by callingCanShowCyberItem
orGetCyberItemWindow
) that the display part is already displaying a Cyberdog item equal to (or, for example, on the same page as) the specified Cyberdog item. Typically, you callShowCyberItem
when you want the display part to scroll to display a particular Cyberdog item.If you subclass
CyberPartExtension
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
TheCanShowCyberItem
method (page 284).
TheGetCyberItemWindow
method (page 286).
TheOpenCyberItem
method (page 290).
TheCyberSession::SelectCyberItemWindow
method (page 373).