public void pasteCommand()
        {
            TextArea.Paste();
            addRecentCommand(PASTE);

            //Focus comes back to TextArea
            TextArea.Focus();
        }
 private void pasteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _textArea.Paste();
 }
Example #3
0
 private void pasteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     m_rScintilla_TextArea.Paste();
 }