Cut() 공개 메소드

Moves the current selection in the hex box to the Clipboard.
public Cut ( ) : void
리턴 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();
 }
예제 #2
0
 private void menuCut_Click(object sender, EventArgs e)
 {
     hexBox1.Cut();
 }