ITextBuffer.Changing Event

Definition

Occurs just before a non-empty ITextEdit is applied.

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

Event Type

Remarks

If the edit operation is canceled in this event, another edit operation can be be started immediately in the event handler. For example, this event may be used to provide checkout on edit as an implicit, user-cancelable source control functionality.

Applies to