Metodo IVsTextViewEvents.OnChangeCaretLine
Notifica al client quando una modifica della riga del cursore si verifica.
Spazio dei nomi: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Sintassi
'Dichiarazione
Sub OnChangeCaretLine ( _
pView As IVsTextView, _
iNewLine As Integer, _
iOldLine As Integer _
)
void OnChangeCaretLine(
IVsTextView pView,
int iNewLine,
int iOldLine
)
void OnChangeCaretLine(
[InAttribute] IVsTextView^ pView,
[InAttribute] int iNewLine,
[InAttribute] int iOldLine
)
abstract OnChangeCaretLine :
pView:IVsTextView *
iNewLine:int *
iOldLine:int -> unit
function OnChangeCaretLine(
pView : IVsTextView,
iNewLine : int,
iOldLine : int
)
Parametri
pView
Tipo: Microsoft.VisualStudio.TextManager.Interop.IVsTextView[in] Puntatore a un oggetto visualizzazione.
iNewLine
Tipo: Int32[in] Intero che contiene la nuova riga.
iOldLine
Tipo: Int32[in] Intero che contiene la riga precedente.
Note
Firma COM
da textmgr.idl:
HRESULT IVsTextViewEvents::OnChangeCaretLine(
[in] IVsTextView *pView,
[in] long iNewLine,
[in] long iOldLine
);
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.