IVsTextLines.GetLineText (Método)
Devuelve el intervalo de texto especificada en BSTR.
Espacio de nombres: Microsoft.VisualStudio.TextManager.Interop
Ensamblado: Microsoft.VisualStudio.TextManager.Interop (en Microsoft.VisualStudio.TextManager.Interop.dll)
Sintaxis
'Declaración
Function GetLineText ( _
iStartLine As Integer, _
iStartIndex As Integer, _
iEndLine As Integer, _
iEndIndex As Integer, _
<OutAttribute> ByRef pbstrBuf As String _
) As Integer
int GetLineText(
int iStartLine,
int iStartIndex,
int iEndLine,
int iEndIndex,
out string pbstrBuf
)
int GetLineText(
[InAttribute] int iStartLine,
[InAttribute] int iStartIndex,
[InAttribute] int iEndLine,
[InAttribute] int iEndIndex,
[OutAttribute] String^% pbstrBuf
)
abstract GetLineText :
iStartLine:int *
iStartIndex:int *
iEndLine:int *
iEndIndex:int *
pbstrBuf:string byref -> int
function GetLineText(
iStartLine : int,
iStartIndex : int,
iEndLine : int,
iEndIndex : int,
pbstrBuf : String
) : int
Parámetros
iStartLine
Tipo: Int32[in] línea inicial.
iStartIndex
Tipo: Int32[in] Iniciar el índice del carácter en la línea. Este valor debe ser menor o igual que la longitud de la línea.
iEndLine
Tipo: Int32[in] Línea de cierre.
iEndIndex
Tipo: Int32[in] Índice del carácter final de la línea. Este valor debe ser menor o igual que la longitud de la línea.
pbstrBuf
Tipo: String%[out] Texto a insertar, si existe.
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 IVsTextLines::GetLineText(
[in] long iStartLine,
[in] CharIndex iStartIndex,
[in] long iEndLine,
[in] CharIndex iEndIndex,
[out] BSTR * pbstrBuf
);
Es responsabilidad del llamador liberar el BSTR.
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.
Vea también
Referencia
Microsoft.VisualStudio.TextManager.Interop (Espacio de nombres)