Share via


CRichEditCtrl::Paste

void Paste( );

Remarks

Call this function to insert the data from the Clipboard into the CRichEditCtrl at the insertion point, the ___location of the caret. Data is inserted only if the Clipboard contains data in a recognized format.

For more information, see in the Win32 documentation.

Example

// The pointer to my rich edit control.
extern CRichEditCtrl* pmyRichEditCtrl;

// Replace all of the text with the text in the clipboard.
pmyRichEditCtrl->SetSel(0, -1);
pmyRichEditCtrl->Paste();

CRichEditCtrl OverviewClass MembersHierarchy Chart

See Also   CRichEditCtrl::Copy, CRichEditCtrl::Cut, CRichEditCtrl::PasteSpecial