Método IVsTextLinesEvents.OnChangeLineAttributes
Notifica o cliente quando os atributos de linha de texto foram alterados.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (em Microsoft.VisualStudio.TextManager.Interop.dll)
Sintaxe
'Declaração
Sub OnChangeLineAttributes ( _
iFirstLine As Integer, _
iLastLine As Integer _
)
void OnChangeLineAttributes(
int iFirstLine,
int iLastLine
)
void OnChangeLineAttributes(
[InAttribute] int iFirstLine,
[InAttribute] int iLastLine
)
abstract OnChangeLineAttributes :
iFirstLine:int *
iLastLine:int -> unit
function OnChangeLineAttributes(
iFirstLine : int,
iLastLine : int
)
Parâmetros
iFirstLine
Tipo: Int32[in] Afetado pela primeira vez a linha, inclusive.
iLastLine
Tipo: Int32[in] Afetado pela última linha, inclusive.
Comentários
COM assinatura
De textmgr.idl:
HRESULT IVsTextLinesEvents::OnChangeLineAttributes(
[in] long iFirstLine,
[in] long iLastLine
);
Este evento é chamado em qualquer instância em que altera no resultado do texto nas alterações ao texto da linha atributos, como a sintaxe e a cor do marcador. Alterações de texto podem ocorrer tanto por programação quanto por ação do usuário.
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.