Compartilhar via


Método IVsFindTarget.Replace

Solicita uma substituição 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 Replace ( _
    pszSearch As String, _
    pszReplace As String, _
    grfOptions As UInteger, _
    fResetStartPoint As Integer, _
    pHelper As IVsFindHelper, _
    <OutAttribute> ByRef pfReplaced As Integer _
) As Integer
int Replace(
    string pszSearch,
    string pszReplace,
    uint grfOptions,
    int fResetStartPoint,
    IVsFindHelper pHelper,
    out int pfReplaced
)
int Replace(
    [InAttribute] String^ pszSearch, 
    [InAttribute] String^ pszReplace, 
    [InAttribute] unsigned int grfOptions, 
    [InAttribute] int fResetStartPoint, 
    [InAttribute] IVsFindHelper^ pHelper, 
    [OutAttribute] int% pfReplaced
)
abstract Replace : 
        pszSearch:string * 
        pszReplace:string * 
        grfOptions:uint32 * 
        fResetStartPoint:int * 
        pHelper:IVsFindHelper * 
        pfReplaced:int byref -> int
function Replace(
    pszSearch : String, 
    pszReplace : String, 
    grfOptions : uint, 
    fResetStartPoint : int, 
    pHelper : IVsFindHelper, 
    pfReplaced : int
) : int

Parâmetros

  • pszSearch
    Tipo: String

    [in] Ponteiro para uma seqüência terminada nula, que contém o texto de pesquisa.

  • pszReplace
    Tipo: String

    [in] Ponteiro para uma seqüência terminada nula, que contém o texto de substituição.

  • 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.

  • pfReplaced
    Tipo: Int32%

    [out, retval] true se a substituição foi bem-sucedida.

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::Replace(
   [in] LPCOLESTR pszSearch,
   [in] LPCOLESTR pszReplace,
   [in] VSFINDOPTIONS grfOptions,
   [in] BOOL fResetStartPoint,
   [in] IVsFindHelper * pHelper
);

Findé chamado antes de Replace. Quando Replace é chamado, você deve verificar se a seqüência da seleção atual é igual a pszSearch, em seguida, substituir a seleção com pszReplace.

Segurança do .NET Framework

Consulte também

Referência

IVsFindTarget Interface

Namespace Microsoft.VisualStudio.TextManager.Interop