ITextBuffer::ChangedLowPriority 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^>^ ChangedLowPriority {
	void add(EventHandler<TextContentChangedEventArgs^>^ value);
	void remove(EventHandler<TextContentChangedEventArgs^>^ value);
}

This event is raised after ChangedHighPriority and Changed events. Changed events for edits made within a ChangedLowPriority, Changed, or ChangedHighPriority listener are queued. See Changed for more information about event queuing.

Return to top
Show: