CRichEditCtrl::Paste

从剪贴板中的数据绑定到中的 CRichEditCtrl 中的插入点插入,插入符号的位置。

void Paste( );

备注

数据,仅当剪贴板在一个无法识别的格式,包含数据插入。

有关更多信息,请参见 Windows SDK的 WM_PASTE

示例

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

要求

Header: afxcmn.h

请参见

参考

CRichEditCtrl选件类

层次结构图

CRichEditCtrl::Copy

CRichEditCtrl::Cut

CRichEditCtrl::PasteSpecial