ReplaceNext() public method

public ReplaceNext ( Control ctl, string str, string strReplace, bool matchCase ) : void
ctl System.Windows.Forms.Control
str string
strReplace string
matchCase bool
return void
Esempio n. 1
0
 private void btnReplace_Click(object sender, System.EventArgs e)
 {
     rdlEdit.FindNext(this, txtFindR.Text, chkCase.Checked);
     rdlEdit.ReplaceNext(this, txtFindR.Text, txtReplace.Text, chkCase.Checked);
     txtFindR.Focus();
 }