void PasteSpecial( UINT nClipFormat, DWORD dvAspect = 0, HMETAFILE hMF = 0 );
Parameters
nClipFormat
Clipboard format to paste into this CRichEditCtrl object.
dvAspect
Device aspect for the data to be retrieved from the Clipboard.
hMF
Handle to the metafile containing the iconic view of the object to be pasted.
Remarks
Call this function to paste data in a specific Clipboard format into this CRichEditCtrl object. The new material is inserted at the insertion point, the location of the caret.
For more information, see EM_PASTESPECIAL in the Win32 documentation.
Example
// The pointer to my rich edit control.
extern CRichEditCtrl* pmyRichEditCtrl;
// Paste the data from the clipboard as text.
pmyRichEditCtrl->PasteSpecial(CF_TEXT);
CRichEditCtrl Overview | Class Members | Hierarchy Chart
See Also CRichEditCtrl::Paste, CRichEditCtrl::Copy, CRichEditCtrl::Cut