다음을 통해 공유


IncrementalSearch.IncrementalSearchModeOn 속성

ISearch가 수행 중인지 여부를 나타내는 값을 가져옵니다.

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

구문

‘선언
ReadOnly Property IncrementalSearchModeOn As Boolean
bool IncrementalSearchModeOn { get; }
property bool IncrementalSearchModeOn {
    bool get ();
}
abstract IncrementalSearchModeOn : bool with get
function get IncrementalSearchModeOn () : boolean

속성 값

형식: Boolean
ISearch를 시작하여 아직 종료되지 않았으면 true이고, 그렇지 않으면 false입니다.

예제

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"))
    ' Display the status of the search mode.
    'MsgBox("ISearch status: " & _
    tp.IncrementalSearch.IncrementalSearchModeOn.ToString)
    ' 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