TextEditorEvents Interface
Provides events for changes made in the Text/Code Editor. Use this interface for functionality and refer to TextEditorEventsClass for this object's documentation.
Assembly: EnvDTE (in EnvDTE.dll)
| Name | Description | |
|---|---|---|
![]() | add_LineChanged(_dispTextEditorEvents_LineChangedEventHandler^) | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only.(Inherited from _dispTextEditorEvents_Event.) |
![]() | remove_LineChanged(_dispTextEditorEvents_LineChangedEventHandler^) | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only.(Inherited from _dispTextEditorEvents_Event.) |
| Name | Description | |
|---|---|---|
![]() | LineChanged | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only.(Inherited from _dispTextEditorEvents_Event.) |
The TextEditorEvents object is returned by DTE.Events.
<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

