Important: The information in this document is obsolete and should not be used for new development.
SetCyberItem
Assigns the specified Cyberdog item to this display part.
void SetCyberItem (in CyberItem item, in ParameterSet openParams);
item
- The Cyberdog item to be displayed.
openParams
- The
ParameterSet
object to use in the opening process, if any; otherwise,kODNULL
.DISCUSSION
This method is called by theOpenCyberItem
method; this method should store a reference to the specified Cyberdog item. The superclass implementation of this method releases the old Cyberdog item, if any, and acquires the new Cyberdog item. Subsequent calls toGetCyberItem
will return the specified Cyberdog item.If you subclass
CyberPartExtension
and override this method, your override must call its inherited method.SEE ALSO
TheGetCyberItem
method (page 285).
TheOpenCyberItem
method (page 290).