Important: The information in this document is obsolete and should not be used for new development.
IsDownloadable
Tests whether the data referenced by this Cyberdog item is a file that can be downloaded.
ODBoolean IsDownloadable ();
- return value
kODTrueif the data is a downloadable file; otherwise,kODFalse.DISCUSSION
This method should returnkODTrueif this Cyberdog item is capable of providing a stream object via theCreateCyberStreammethod and a file creator and file type via theGetFileInfomethod. The superclass implementation returnskODFalse.This method throws the
kCDErrItemNotResolvedexception if the Cyberdog item is not resolved.If you subclass
CyberItemand override this method, your override must not call its inherited method; that is, your override must implement this method's functionality completely.SEE ALSO
TheCreateCyberStreammethod (page 231).
TheGetFileInfomethod (page 234).