ITextCaret::PositionChanged Event

 

Occurs when the position of the caret has been explicitly changed.

Namespace:   Microsoft.VisualStudio.Text.Editor
Assembly:  Microsoft.VisualStudio.Text.UI (in Microsoft.VisualStudio.Text.UI.dll)

event EventHandler<CaretPositionChangedEventArgs^>^ PositionChanged {
	void add(EventHandler<CaretPositionChangedEventArgs^>^ value);
	void remove(EventHandler<CaretPositionChangedEventArgs^>^ value);
}

The event is not raised if the caret position was changed as a consequence of tracking normal text edits. The normal behavior of the caret is to move after the typed character.

Return to top
Show: