ITextBuffer.ChangedLowPriority Event

Definition

Occurs when a non-empty ITextEdit is successfully applied.

public:
 event EventHandler<Microsoft::VisualStudio::Text::TextContentChangedEventArgs ^> ^ ChangedLowPriority;
event EventHandler<Microsoft.VisualStudio.Text.TextContentChangedEventArgs> ChangedLowPriority;
member this.ChangedLowPriority : EventHandler<Microsoft.VisualStudio.Text.TextContentChangedEventArgs> 
Event ChangedLowPriority As EventHandler(Of TextContentChangedEventArgs) 

Event Type

Remarks

This is a performance critical event, whose handlers directly affect typing responsiveness. Unless it's required to handle this event synchronously on the UI thread, please consider listening to ChangedOnBackground event instead.

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.

Applies to