Sdílet prostřednictvím


TextBuffer.Find – metoda

Toto rozhraní API podporuje infrastrukturu rozhraní .NET Framework a není určeno pro použití přímo v kódu.

Microsoft pouze pro interní použití.

Obor názvů:  EnvDTE
Sestavení:  EnvDTE (v EnvDTE.dll)

Syntaxe

'Deklarace
Function Find ( _
    Target As String, _
    <OutAttribute> ByRef StartLine As Integer, _
    <OutAttribute> ByRef StartColumn As Integer, _
    <OutAttribute> ByRef EndLine As Integer, _
    <OutAttribute> ByRef EndColumn As Integer, _
    WholeWord As Boolean, _
    MatchCase As Boolean, _
    PatternSearch As Boolean _
) As Boolean
bool Find(
    string Target,
    out int StartLine,
    out int StartColumn,
    out int EndLine,
    out int EndColumn,
    bool WholeWord,
    bool MatchCase,
    bool PatternSearch
)
bool Find(
    [InAttribute] String^ Target, 
    [InAttribute] [OutAttribute] int% StartLine, 
    [InAttribute] [OutAttribute] int% StartColumn, 
    [InAttribute] [OutAttribute] int% EndLine, 
    [InAttribute] [OutAttribute] int% EndColumn, 
    [InAttribute] bool WholeWord, 
    [InAttribute] bool MatchCase, 
    [InAttribute] bool PatternSearch
)
abstract Find : 
        Target:string * 
        StartLine:int byref * 
        StartColumn:int byref * 
        EndLine:int byref * 
        EndColumn:int byref * 
        WholeWord:bool * 
        MatchCase:bool * 
        PatternSearch:bool -> bool 
function Find(
    Target : String, 
    StartLine : int, 
    StartColumn : int, 
    EndLine : int, 
    EndColumn : int, 
    WholeWord : boolean, 
    MatchCase : boolean, 
    PatternSearch : boolean
) : boolean

Parametry

  • StartLine
    Typ: System.Int32%
    Řádek, ze kterého chcete spustit.
  • StartColumn
    Typ: System.Int32%
    Sloupec, ze kterého chcete spustit.
  • EndLine
    Typ: System.Int32%
    Řádek, pro kterou chcete zastavit.
  • EndColumn
    Typ: System.Int32%
    Sloupec, pro kterou chcete zastavit.
  • WholeWord
    Typ: System.Boolean
    true Pokud operace hledání by jinak odpovídat na slovo, false.
  • MatchCase
    Typ: System.Boolean
    true Pokud operace hledání by měly odpovídat případ cíl, jinak false.
  • PatternSearch
    Typ: System.Boolean
    true Pokud operace hledání by měl odpovídat vzoru cílové jinak false.

Vrácená hodnota

Typ: System.Boolean
true Pokud operace hledání řetězce, jinak false.

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

TextBuffer Rozhraní

EnvDTE – obor názvů