IIncrementalSearch Interface

Definition

Defines an incremental search operation.

public interface class IIncrementalSearch
public interface class IIncrementalSearch
__interface IIncrementalSearch
public interface IIncrementalSearch
type IIncrementalSearch = interface
Public Interface IIncrementalSearch

Remarks

The IIncrementalSearch interface is associated with a ITextView.

After the Start() method is called, the current caret position is marked as the start of the search, and the AppendCharAndSearch(Char) and DeleteCharAndSearch() operations can be used to change the search term. The direction of the search is set to forward by default, although this setting can be changed with the SearchDirection property. If a matching term is found, it is selected and the caret is moved to the end of the selected word.

Every search operation returns an IncrementalSearchResult, which includes information about the search, such as whether the search looped around the start or end of the buffer, whether the search looped around the starting position of the search, and whether the item was found. It is the responsibility of the caller to pass this information to the end user.

Incremental search performs its search on the text snapshot of the ITextView. As a result, if the result falls within a collapsed outlining region, the region will be expanded before the result is selected.

Properties

IsActive

Determines whether an incremental search is in process.

SearchDirection

Gets or sets the direction of the incremental search.

SearchString

Gets or sets the current search term.

TextView

Gets the ITextView associated with this search.

Methods

AppendCharAndSearch(Char)

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.

Clear()

Clears the existing search term without changing the selection.

DeleteCharAndSearch()

Removes the last character of the current search term and updates the search results based on the new term.

Dismiss()

Terminates an incremental search operation.

SelectNextResult()

Selects the next result in an incremental search operation. The matched term will be selected.

Start()

Starts an incremental search operation, and marks the position of the caret as the starting position for the search.

Applies to