Compartilhar via


Interface TextEditorEvents

Fornece eventos para as alterações feitas no Editor de texto/código.Usar esta interface para funcionalidade e consulte TextEditorEventsClass para obter a documentação deste objeto.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
<GuidAttribute("23B7A868-6C89-436A-94FA-25D755456A77")> _
Public Interface TextEditorEvents _
    Inherits _TextEditorEvents, _dispTextEditorEvents_Event
[GuidAttribute("23B7A868-6C89-436A-94FA-25D755456A77")]
public interface TextEditorEvents : _TextEditorEvents, 
    _dispTextEditorEvents_Event
[GuidAttribute(L"23B7A868-6C89-436A-94FA-25D755456A77")]
public interface class TextEditorEvents : _TextEditorEvents, 
    _dispTextEditorEvents_Event
[<GuidAttribute("23B7A868-6C89-436A-94FA-25D755456A77")>]
type TextEditorEvents =  
    interface
        interface _TextEditorEvents
        interface _dispTextEditorEvents_Event
    end
public interface TextEditorEvents extends _TextEditorEvents, _dispTextEditorEvents_Event

O tipo TextEditorEvents expõe os membros a seguir.

Métodos

  Nome Descrição
Método público add_LineChanged Infraestrutura. Somente para uso interno da Microsoft. (Herdado de _dispTextEditorEvents_Event.)
Método público remove_LineChanged Infraestrutura. Somente para uso interno da Microsoft. (Herdado de _dispTextEditorEvents_Event.)

Superior

Eventos

  Nome Descrição
Evento público LineChanged Infraestrutura. Somente para uso interno da Microsoft. (Herdado de _dispTextEditorEvents_Event.)

Superior

Comentários

O TextEditorEvents objeto é retornado por DTE.Events.

Exemplos

<System.ContextStaticAttribute()> Public WithEvents TextEditorEvents As EnvDTE.TextEditorEvents

Public Sub TextEditorEvents_LineChanged(ByVal StartPoint As EnvDTE.TextPoint, ByVal EndPoint As EnvDTE.TextPoint, ByVal Hint As Integer) Handles TextEditorEvents.LineChanged
   MsgBox("test")
End Sub

Consulte também

Referência

Namespace EnvDTE