Condividi tramite


Metodo IVsFindTarget.Find

Richiede una ricerca della stringa di testo.

Spazio dei nomi:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Sintassi

'Dichiarazione
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

Parametri

  • pszSearch
    Tipo: String

    [in] Puntatore a una stringa con terminazione null che contiene il testo cercato.

  • grfOptions
    Tipo: UInt32

    [in] Specifica opzioni di ricerca. I valori vengono ricavati da __VSFINDOPTIONS enumerazione.

  • fResetStartPoint
    Tipo: Int32

    [in] Flag per reimpostare la posizione iniziale trovato.

  • pResult
    Tipo: UInt32%

    [out] Puntatore al risultato della ricerca. I valori vengono ricavati da __VSFINDRESULT enumerazione.

Valore restituito

Tipo: Int32
Se il metodo ha esito positivo, restituisce S_OK.Se non riesce, restituisce un codice di errore.

Note

Firma COM

da textmgr.idl:

HRESULT IVsFindTarget::Find(
   [in] LPCOLESTR pszSearch,
   [in] VSFINDOPTIONS grfOptions,
   [in] BOOL fResetStartPoint,
   [in] IVsFindHelper * pHelper
);

Questo metodo viene utilizzato solo quando GetSearchImage non viene implementato.

Sicurezza di .NET Framework

Vedere anche

Riferimenti

IVsFindTarget Interfaccia

Spazio dei nomi Microsoft.VisualStudio.TextManager.Interop