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();
必要条件
ヘッダー: afxcmn.h