Subclass: None
CClipboardPictOStream objects are used to stream PICTURE data to a CClipboard. They should only be retrieved from a CClipboard.
PICTURE data onto the native clipboard:
CClipboard aCB; // CBWRITE mode is the default
CClipboardPictOStream * aPictStr = aCB.GetPictOStream();
*aPictStr << myPict; // Streaming out a PICTURE
CClipboardPictOStream& operator<<(PICTURE thePict);
PICTURE data into the CClipboard.