Alsing.Windows.Forms.SyntaxBoxControl.FindNext C# (CSharp) Method

FindNext() public method

Selects the next word (from the current caret position) that matches the parameter criterias.
public FindNext ( string Pattern, bool MatchCase, bool WholeWords, bool UseRegEx ) : void
Pattern string The pattern to find
MatchCase bool Match case , true/false
WholeWords bool Match whole words only , true/false
UseRegEx bool To be implemented
return void
        public void FindNext(string Pattern, bool MatchCase, bool WholeWords, bool
                                                                                  UseRegEx)
        {
            ((EditViewControl) _ActiveView).SelectNext(Pattern, MatchCase, WholeWords,
                                                       UseRegEx);
        }

Same methods

SyntaxBoxControl::FindNext ( ) : void