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: Automate an Incremental Search

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