Metodo IVsTextBuffer.GetLengthOfLine
Restituisce la lunghezza di una riga nel buffer.
Spazio dei nomi: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Sintassi
'Dichiarazione
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
Parametri
iLine
Tipo: Int32[in] Numero della riga della cui lunghezza è richiesta.
piLength
Tipo: Int32%[out] Puntatore alla lunghezza della riga.
Valore restituito
Tipo: Int32
Se il metodo ha esito positivo, restituisce S_OK.Se non riesce, restituisce un codice di errore.
Note
Firma COM
da textmgr.idl:
HRESULT IVsTextBuffer::GetLengthOfLine(
[in] long iLine,
[out] long *piLength
);
Questo metodo viene utilizzato molto tramite le visualizzazioni e è abbastanza efficiente in tutte le implementazioni.
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.