Important: The information in this document is obsolete and should not be used for new development.
IsCyberItemSelected
Tests whether any Cyberdog items are selected in this part.
ODBoolean IsCyberItemSelected (in ODFrame frame);
frame
- The frame to check for a selection.
- return value
kODTrue
if one or more Cyberdog items are selected; otherwise,kODFalse
.DISCUSSION
This method should returnkODTrue
if there are any Cyberdog items selected in the specified frame. The superclass implementation of this method returnskODFalse
.If a Cyberdog display part displays Cyberdog items as part of its content model and allows the user to select them, the part'sCyberPartExtension
subclass must override this method.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
TheAcquireSelectedCyberItems
method (page 284).