ITextBuffer.Changing 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 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.