Compartilhar via


Método IVsTextLayer.CopyLineText

Coloca o período especificado de texto em um buffer alocado pelo chamador

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (em Microsoft.VisualStudio.TextManager.Interop.dll)

Sintaxe

'Declaração
Function CopyLineText ( _
    iStartLine As Integer, _
    iStartIndex As Integer, _
    iEndLine As Integer, _
    iEndIndex As Integer, _
    pszBuf As IntPtr, _
    <OutAttribute> ByRef pcchBuf As Integer _
) As Integer
int CopyLineText(
    int iStartLine,
    int iStartIndex,
    int iEndLine,
    int iEndIndex,
    IntPtr pszBuf,
    out int pcchBuf
)
int CopyLineText(
    [InAttribute] int iStartLine, 
    [InAttribute] int iStartIndex, 
    [InAttribute] int iEndLine, 
    [InAttribute] int iEndIndex, 
    [InAttribute] IntPtr pszBuf, 
    [InAttribute] [OutAttribute] int% pcchBuf
)
abstract CopyLineText : 
        iStartLine:int * 
        iStartIndex:int * 
        iEndLine:int * 
        iEndIndex:int * 
        pszBuf:IntPtr * 
        pcchBuf:int byref -> int
function CopyLineText(
    iStartLine : int, 
    iStartIndex : int, 
    iEndLine : int, 
    iEndIndex : int, 
    pszBuf : IntPtr, 
    pcchBuf : int
) : int

Parâmetros

  • iStartLine
    Tipo: Int32

    [in] Linha inicial

  • iStartIndex
    Tipo: Int32

    [in] Índice de caractere inicial dentro da linha (deve ser < = comprimento da linha)

  • iEndLine
    Tipo: Int32

    [in] Final de linha

  • iEndIndex
    Tipo: Int32

    [in] Índice de caractere de final dentro da linha (deve ser < = comprimento da linha)

  • pszBuf
    Tipo: IntPtr

    [in] Texto para inserir, se houver

  • pcchBuf
    Tipo: Int32%

    [in, out] Na entrada, o número de caracteres a serem copiados. Na saída, o tamanho necessário do buffer. A contagem é caracteres UNICODE, não em bytes.

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 IVsTextLayer::CopyLineText(
   [in] long iStartLine,
   [in] CharIndex iStartIndex,
   [in] long iEndLine,
   [in] CharIndex iEndIndex,
   [in] LPWSTR pszBuf,
   [in, out] long * pcchBuf
);

CopyLineTextirá copiar até cchBuf caracteres. Se o buffer não é grande o suficiente, CopyLineText retorna BUFFER_E_DEST_TOO_SMALL e define * para o tamanho necessário.

Dica

pcchBufcontém uma contagem de caracteres UNICODE, não em BYTES.

Para obter o tamanho necessário, você pode definir pszBuf para nulluma referência nula (Nothing no Visual Basic).

Segurança do .NET Framework

Consulte também

Referência

IVsTextLayer Interface

Namespace Microsoft.VisualStudio.TextManager.Interop