ReplaceAll() публичный Метод

public ReplaceAll ( Control ctl, string str, string strReplace, bool matchCase ) : void
ctl System.Windows.Forms.Control
str string
strReplace string
matchCase bool
Результат void
Пример #1
0
 private void btnReplaceAll_Click(object sender, System.EventArgs e)
 {
     rdlEdit.ReplaceAll(this, txtFindR.Text, txtReplace.Text, chkCase.Checked);
     txtFindR.Focus();
 }