Cut() public method

Moves the current selection in the hex box to the Clipboard.
public Cut ( ) : void
return void
 /// <summary>
 /// The handler for the "Cut"-Click event
 /// </summary>
 /// <param name="sender">the sender object</param>
 /// <param name="e">the event data</param>
 void CutMenuItem_Click(object sender, EventArgs e)
 {
     _hexBox.Cut();
 }
Esempio n. 2
0
 private void menuCut_Click(object sender, EventArgs e)
 {
     hexBox1.Cut();
 }