public bool Find(string text, bool matchCase, bool wholeWord) { if (Disabled) { return(false); } SearchInfo = new SearchInfo(this); return(SearchInfo.Find(text, matchCase, wholeWord)); }
public bool FindNext() { if (Disabled) { return(false); } if (SearchInfo != null) { return(SearchInfo.FindNext()); } return(false); }