ITextBuffer.ChangedHighPriority 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 a non-empty ITextEdit is successfully applied.
public:
event EventHandler<Microsoft::VisualStudio::Text::TextContentChangedEventArgs ^> ^ ChangedHighPriority;
event EventHandler<Microsoft.VisualStudio.Text.TextContentChangedEventArgs> ChangedHighPriority;
member this.ChangedHighPriority : EventHandler<Microsoft.VisualStudio.Text.TextContentChangedEventArgs>
Event ChangedHighPriority 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 before Changed and ChangedHighPriority events.
Changed events for edits made within a ChangedLowPriority, Changed, or ChangedHighPriority listener are queued. See Changed for more information about event queuing.