Exemple #1
0
        public bool Find(string text, bool matchCase, bool wholeWord)
        {
            if (Disabled)
            {
                return(false);
            }

            SearchInfo = new SearchInfo(this);
            return(SearchInfo.Find(text, matchCase, wholeWord));
        }
Exemple #2
0
        public bool FindNext()
        {
            if (Disabled)
            {
                return(false);
            }

            if (SearchInfo != null)
            {
                return(SearchInfo.FindNext());
            }
            return(false);
        }