IIncrementalSearch.AppendCharAndSearch(Char) Method

Definition

Extends the current term being searched for by one character. If a new term is matched, it is selected. The selection can be used to access the match.

public:
 Microsoft::VisualStudio::Text::IncrementalSearch::IncrementalSearchResult AppendCharAndSearch(char toAppend);
Microsoft::VisualStudio::Text::IncrementalSearch::IncrementalSearchResult AppendCharAndSearch(char toAppend);
public Microsoft.VisualStudio.Text.IncrementalSearch.IncrementalSearchResult AppendCharAndSearch (char toAppend);
abstract member AppendCharAndSearch : char -> Microsoft.VisualStudio.Text.IncrementalSearch.IncrementalSearchResult
Public Function AppendCharAndSearch (toAppend As Char) As IncrementalSearchResult

Parameters

toAppend
Char

The character to append to the current search term.

Returns

An IncrementalSearchResult that contains information about whether the search term was found and whether the search wrapped around the beginning or end of the buffer.

Applies to