Paste() public method

Replaces the current selection in the hex box with the contents of the Clipboard.
public Paste ( ) : void
return void
 /// <summary>
 /// The handler for the "Paste"-Click event
 /// </summary>
 /// <param name="sender">the sender object</param>
 /// <param name="e">the event data</param>
 void PasteMenuItem_Click(object sender, EventArgs e)
 {
     _hexBox.Paste();
 }
Exemplo n.º 2
0
 private void menuPaste_Click(object sender, EventArgs e)
 {
     hexBox1.Paste();
 }