Método IVsFindTarget.Find
Solicita uma pesquisa de seqüência de caracteres de texto.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (em Microsoft.VisualStudio.TextManager.Interop.dll)
Sintaxe
'Declaração
Function Find ( _
pszSearch As String, _
grfOptions As UInteger, _
fResetStartPoint As Integer, _
pHelper As IVsFindHelper, _
<OutAttribute> ByRef pResult As UInteger _
) As Integer
int Find(
string pszSearch,
uint grfOptions,
int fResetStartPoint,
IVsFindHelper pHelper,
out uint pResult
)
int Find(
[InAttribute] String^ pszSearch,
[InAttribute] unsigned int grfOptions,
[InAttribute] int fResetStartPoint,
[InAttribute] IVsFindHelper^ pHelper,
[OutAttribute] unsigned int% pResult
)
abstract Find :
pszSearch:string *
grfOptions:uint32 *
fResetStartPoint:int *
pHelper:IVsFindHelper *
pResult:uint32 byref -> int
function Find(
pszSearch : String,
grfOptions : uint,
fResetStartPoint : int,
pHelper : IVsFindHelper,
pResult : uint
) : int
Parâmetros
pszSearch
Tipo: String[in] Ponteiro para uma seqüência terminada nula, que contém o texto de pesquisa.
grfOptions
Tipo: UInt32[in] Especifica as opções de pesquisa. Valores são obtidas a partir do __VSFINDOPTIONS enumeração.
fResetStartPoint
Tipo: Int32[in] Ponto de início do sinalizador para redefinir a pesquisa.
pHelper
Tipo: Microsoft.VisualStudio.TextManager.Interop.IVsFindHelper[in] Ponteiro para uma IVsFindHelper interface.
pResult
Tipo: UInt32%[out] Ponteiro para o resultado da pesquisa. Valores são obtidas a partir do __VSFINDRESULT enumeração.
Valor de retorno
Tipo: Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De textmgr.idl:
HRESULT IVsFindTarget::Find(
[in] LPCOLESTR pszSearch,
[in] VSFINDOPTIONS grfOptions,
[in] BOOL fResetStartPoint,
[in] IVsFindHelper * pHelper
);
Este método é usado somente quando GetSearchImage não está implementado.
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ável.