共用方式為


TextSelection.FindText 方法

從作用點到文件結尾搜尋指定的文字。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
Function FindText ( _
    Pattern As String, _
    vsFindOptionsValue As Integer _
) As Boolean
bool FindText(
    string Pattern,
    int vsFindOptionsValue
)
bool FindText(
    [InAttribute] String^ Pattern, 
    [InAttribute] int vsFindOptionsValue
)
abstract FindText : 
        Pattern:string * 
        vsFindOptionsValue:int -> bool
function FindText(
    Pattern : String, 
    vsFindOptionsValue : int
) : boolean

參數

  • Pattern
    類型:String

    必要項。 要尋找的文字。

  • vsFindOptionsValue
    類型:Int32

    選擇項。 vsFindOptions 常數,表示要使用的搜尋選項。

傳回值

類型:Boolean
如果找到該文字,布林值會表示為 true,否則為 false。

備註

FindText 搜尋從文字選取範圍的作用端點的特定文字字串到結尾的 Word 文件。 傳回的值會指出是否找到了該文字。 如果到該文字時,則編輯點會移動到符合位置的開頭。 否則,編輯位置將不會變更。

如果符合的模式比對是包含標記子運算式的規則運算式,則 Tags 引數會傳回 TextRange 物件的集合,其中每一個物件都會對應到一個標記子運算式。

範例

Sub FindTextExample()
   ' Before running this example, open a text document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection

   ' Looks for the first occurence of the word, test, in the current 
   ' document. If found, the line is selected.
   If objSel.FindText("test", vsFindOptions.vsFindOptionsFromStart) Then
      objSel.SelectLine()
   End If
End Sub

.NET Framework 安全性

請參閱

參考

TextSelection 介面

EnvDTE 命名空間