TextEditorEventsClass.LineChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when changes are made to a line in the Text/Code Editor that moves the insertion point.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual event EnvDTE::_dispTextEditorEvents_LineChangedEventHandler ^ LineChanged;
public:
virtual event EnvDTE::_dispTextEditorEvents_LineChangedEventHandler ^ LineChanged;
public virtual event EnvDTE._dispTextEditorEvents_LineChangedEventHandler LineChanged;
member this.LineChanged : EnvDTE._dispTextEditorEvents_LineChangedEventHandler
Public Overridable Custom Event LineChanged As _dispTextEditorEvents_LineChangedEventHandler Implements LineChanged
Event Type
Implements
Examples
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