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
ParameterSetobject associated with the opening process.DISCUSSION
What happens whenOpenis called depends on the implementation in theCyberItemsubclass. Typically, the Cyberdog item creates a new display part to display the data and calls that part'sOpenCyberItemmethod.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::AddCyberItemToLogto 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
TheParameterSetclass (page 391).