ZForge.Controls.TreeViewAdv.Tree.IncrementalSearch.ContinuousSearch C# (CSharp) Method

ContinuousSearch() private method

private ContinuousSearch ( Char value ) : void
value Char
return void
        private void ContinuousSearch(Char value)
        {
            if (value == ' ' && String.IsNullOrEmpty(_searchString))
                return; //Ingnore leading space

            _searchString += value;
            DoContinuousSearch();
        }