Compartir a través de


IVsTextStorage.Storage_CopyText (Método)

Espacio de nombres:  Microsoft.VisualStudio.TextManager.Interop
Ensamblado:  Microsoft.VisualStudio.TextManager.Interop (en Microsoft.VisualStudio.TextManager.Interop.dll)

Sintaxis

'Declaración
Function Storage_CopyText ( _
    iStartLine As Integer, _
    iStartIndex As Integer, _
    iBufMax As Integer, _
    pszDest As IntPtr, _
    <OutAttribute> ByRef pcCharsCopied As Integer _
) As Integer
int Storage_CopyText(
    int iStartLine,
    int iStartIndex,
    int iBufMax,
    IntPtr pszDest,
    out int pcCharsCopied
)
int Storage_CopyText(
    [InAttribute] int iStartLine, 
    [InAttribute] int iStartIndex, 
    [InAttribute] int iBufMax, 
    [InAttribute] IntPtr pszDest, 
    [OutAttribute] int% pcCharsCopied
)
abstract Storage_CopyText : 
        iStartLine:int * 
        iStartIndex:int * 
        iBufMax:int * 
        pszDest:IntPtr * 
        pcCharsCopied:int byref -> int
function Storage_CopyText(
    iStartLine : int, 
    iStartIndex : int, 
    iBufMax : int, 
    pszDest : IntPtr, 
    pcCharsCopied : int
) : int

Parámetros

  • iStartLine
    Tipo: Int32

    [in] Línea que contiene el inicio del texto de copiar.

  • iStartIndex
    Tipo: Int32

    [in] Iniciar el índice del carácter en la línea. Debe ser la longitud de <= de línea.

  • iBufMax
    Tipo: Int32

    [in] Tamaño del búfer de pzeDest .

  • pszDest
    Tipo: IntPtr

    [in] Búfer de destino.

  • pcCharsCopied
    Tipo: Int32%

    [out] número de caracteres copiado.

Valor devuelto

Tipo: Int32
si el método tiene éxito, devuelve S_OK.Si se produce un error, devuelve un código de error.

Comentarios

Prototipo COM

de textmgr.idl:

HRESULT IVsTextStorage::Storage_CopyText(
   [in] long iStartLine,
   [in] CharIndex iStartIndex,
   [in] long iBufMax,
   [out] WCHAR *pszDest,
   [out] long *pcCharsCopied
);

Seguridad de .NET Framework

Vea también

Referencia

IVsTextStorage Interfaz

Microsoft.VisualStudio.TextManager.Interop (Espacio de nombres)