Important: The information in this document is obsolete and should not be used for new development.
EndOpening
Informs this opener part that the process of opening a Cyberdog item is complete.
void EndOpening ();DISCUSSION
You should not call this method directly; this method is called when theParameterSet
object associated with a Cyberdog item's opening process is released. By convention, an opener part'sBeginOpening
method adds the opener part to theParameterSet
object with a parameter destructor that will callEndOpening
.If you subclass
CyberOpenerPartExtension
, 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
TheBeginOpening
method (page 271).