다음을 통해 공유


IncrementalSearch.Exit 메서드

현재 ISearch를 중지하고 편집기의 기본 동작으로 되돌아갑니다.

네임스페이스:  EnvDTE80
어셈블리:  EnvDTE80(EnvDTE80.dll)

구문

‘선언
Sub Exit
void Exit()
void Exit()
abstract Exit : unit -> unit
function Exit()

설명

Exit은 ISearch 패턴을 지우거나 현재 선택 영역을 편집기에서 옮기지 않습니다.

예제

Sub testIS()
    ' Set variables for text pane.
    Dim tp As EnvDTE80.TextPane2
    tp = CType(DTE.ActiveDocument.ActiveWindow.Object.ActivePane, _
    TextPane2)
    ' Start an incremental search forward from
    ' the current insertion point in the document.
    tp.IncrementalSearch.StartForward()
    ' Add the character "a" to the search pattern.
    tp.IncrementalSearch.AppendCharAndSearch(Asc("a"))
    ' Perform incremental search using the pattern ("a").
    tp.IncrementalSearch.SearchWithLastPattern()
    ' After the search, exit incremental search mode.
    tp.IncrementalSearch.Exit()
End Sub

.NET Framework 보안

참고 항목

참조

IncrementalSearch 인터페이스

EnvDTE80 네임스페이스

기타 리소스

How to: Search for Text Incrementally

How to: Search a Document Incrementally