FindAll() public method

public FindAll ( string dir, bool regex, bool matchcase, string text, string dirpattern, bool subdirs ) : void
dir string
regex bool
matchcase bool
text string
dirpattern string
subdirs bool
return void
Example #1
0
 private void btnFind_Click(object sender, EventArgs e)
 {
     var ynote = Globals.Ynote;
     var results = new SearchResults(ynote);
     results.Show(ynote.Panel, DockState.DockBottom);
     results.FindAll(tbdir.Text, cbRegex.Checked, cbCase.Checked, tbFind.Text, tbFilter.Text, cbsubdir.Checked);
     Close();
 }
Example #2
0
        private void btnFind_Click(object sender, EventArgs e)
        {
            var ynote   = Globals.Ynote;
            var results = new SearchResults(ynote);

            results.Show(ynote.Panel, DockState.DockBottom);
            results.FindAll(tbdir.Text, cbRegex.Checked, cbCase.Checked, tbFind.Text, tbFilter.Text, cbsubdir.Checked);
            Close();
        }