Important: The information in this document is obsolete and should not be used for new development.
Open
Initiates the opening of this Cyberdog item.
void Open (in ParameterSet theParams);
theParams
- The
ParameterSet
object associated with the opening process.DISCUSSION
What happens whenOpen
is called depends on the implementation in theCyberItem
subclass. Typically, the Cyberdog item creates a new display part to display the data and calls that part'sOpenCyberItem
method.The parameter set contains pointers to objects that may be used during the opening process. For example, the parameter set might contain the parent Cyberdog item whose content contains the Cyberdog item being opened. If so, when the Cyberdog item calls
CyberSession::AddCyberItemToLog
to add itself to the log, it can pass the parent Cyberdog item as a parameter.If you subclass
CyberItem
, you must 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
TheParameterSet
class (page 391).