public void cutCommand()
        {
            TextArea.Cut();
            addRecentCommand(CUT);

            //Focus comes back to TextArea
            TextArea.Focus();
        }
 private void cutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _textArea.Cut();
 }
Esempio n. 3
0
 private void cutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     m_rScintilla_TextArea.Cut();
 }