ITextBuffer::ChangedHighPriority Event

 

Occurs when a non-empty ITextEdit is successfully applied.

Namespace:   Microsoft.VisualStudio.Text
Assembly:  Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)

event EventHandler<TextContentChangedEventArgs^>^ ChangedHighPriority {
	void add(EventHandler<TextContentChangedEventArgs^>^ value);
	void remove(EventHandler<TextContentChangedEventArgs^>^ value);
}

This event is raised before Changed and ChangedLowPriority events. Changed events for edits made within a ChangedLowPriority, Changed, or ChangedHighPriority listener are queued. See E:Microsoft.VisualStudio.Text.ITextBuffer.Change for more information about event queuing.

Return to top
Show: