다음을 통해 공유


IncrementalSearch.StartForward 메서드

앞으로 검색을 시작합니다.

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

구문

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

설명

문서의 끝 부분을 향해 증분 검색을 시작합니다. 필요한 경우 래핑합니다.

예제

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