CRichEditCtrl::Cut
删除(剪辑)当前选定内容(如果有)在rich edit控件和复制已删除的文本复制到剪贴板。
void Cut( );
备注
Cut 执行的该删除可通过调用 取消 成员函数取消。
若要删除当前选择,而不放置已删除的文本复制到剪贴板,请调用 清除 成员函数。
有关更多信息,请参见 Windows SDK的 WM_CUT。
示例
// Delete all of the text and copy it to the clipboard.
m_myRichEditCtrl.SetSel(0, -1);
m_myRichEditCtrl.Cut();
要求
Header: afxcmn.h