IVsTextStream.GetLengthOfLine (Método)
devuelve la longitud de una línea en el búfer.
Espacio de nombres: Microsoft.VisualStudio.TextManager.Interop
Ensamblado: Microsoft.VisualStudio.TextManager.Interop (en Microsoft.VisualStudio.TextManager.Interop.dll)
Sintaxis
'Declaración
Function GetLengthOfLine ( _
iLine As Integer, _
<OutAttribute> ByRef piLength As Integer _
) As Integer
int GetLengthOfLine(
int iLine,
out int piLength
)
int GetLengthOfLine(
[InAttribute] int iLine,
[OutAttribute] int% piLength
)
abstract GetLengthOfLine :
iLine:int *
piLength:int byref -> int
function GetLengthOfLine(
iLine : int,
piLength : int
) : int
Parámetros
iLine
Tipo: Int32[in] Número de línea cuya se solicita longitud.
piLength
Tipo: Int32%[out] puntero a la longitud de la línea.
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
Este método se utiliza importante para vistas y es bastante eficaz en todas las implementaciones.
Prototipo COM
de textmgr.idl:
HRESULT IVsTextStream::GetLengthOfLine(
[in] long iLine,
[out] long *piLength
);
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)