IncrementalSearch.Pattern 属性

获取正在当前的 ISearch 中处理的字符。

命名空间:  EnvDTE80
程序集:  EnvDTE80(在 EnvDTE80.dll 中)

语法

声明
ReadOnly Default Property Pattern As String
    Get
string this { get; }
property String^ default {
    String^ get ();
}
abstract Pattern : string
function get Pattern () : String

属性值

类型:System.String
正在当前的 ISearch 中处理的字符。

备注

每调用一次 AppendCharAndSearchDeleteCharAndBackup 都更新一次该字符串,该字符串表示最新的 ISearch 模式。

示例

Sub testIS2()
    ' Before running, open a document in Visual Studio.
    ' Set variables for text pane.
    Dim tp As EnvDTE80.TextPane2
    tp = CType(DTE.ActiveDocument.ActiveWindow.Object.ActivePane, _
    TextPane2)
    ' Start an incremental search backward from
    ' the current insertion point in the document.
    tp.IncrementalSearch.StartBackward()
    ' Add the character "a" to the search pattern.
    tp.IncrementalSearch.AppendCharAndSearch(Asc("a"))
    ' Display the parent name for IncrementalSearch object.
    MsgBox("IncrementalSearch parent: " & _
    tp.IncrementalSearch.DTE.FullName)
    MsgBox("Search pattern length: " & _
    tp.IncrementalSearch.Pattern.Length)
    ' Perform incremental search using the pattern ("a").
    tp.IncrementalSearch.SearchWithLastPattern()
    ' After the search, exit incremental search mode.
    MsgBox("DeleteCharAndBackup")
    tp.IncrementalSearch.DeleteCharAndBackup()
    MsgBox("SearchForward")
    tp.IncrementalSearch.SearchForward()
    MsgBox("SearchBackward")
    tp.IncrementalSearch.SearchBackward()
    MsgBox("Exit")
    tp.IncrementalSearch.Exit()
End Sub

.NET Framework 安全性

请参见

参考

IncrementalSearch 接口

EnvDTE80 命名空间

其他资源

How to: Automate an Incremental Search

如何:对文档进行渐进式搜索