コード例 #1
0
        public void cutCommand()
        {
            TextArea.Cut();
            addRecentCommand(CUT);

            //Focus comes back to TextArea
            TextArea.Focus();
        }
コード例 #2
0
 private void cutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _textArea.Cut();
 }
コード例 #3
0
 private void cutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     m_rScintilla_TextArea.Cut();
 }