Método TextBuffer.Find
Esta API oferece suporte à infraestrutura .NET Framework e não se destina a ser usada diretamente do seu código.
Somente para uso interno da Microsoft.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
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
Parâmetros
- Target
Tipo: System.String
A seqüência de localizar.
- StartLine
Tipo: System.Int32%
A linha a ser iniciado.
- StartColumn
Tipo: System.Int32%
A coluna a ser iniciado.
- EndLine
Tipo: System.Int32%
A linha na qual parar.
- EndColumn
Tipo: System.Int32%
A coluna na qual parar.
- WholeWord
Tipo: System.Boolean
true Se a operação de localização deve corresponder em uma palavra, caso contrário, false.
- MatchCase
Tipo: System.Boolean
true Se a operação de localização deve corresponder ao caso de destino, caso contrário, false.
- PatternSearch
Tipo: System.Boolean
true Se a operação de localização deve corresponder ao padrão de destino, caso contrário, false.
Valor de retorno
Tipo: System.Boolean
true Se a operação de localização encontrada a seqüência de caracteres, caso contrário, false.
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.