Provides events indicating changes to the associated text document.

NoteNote

The document text changes when the events on this interface fire. Event handlers may retrieve the new text using the IDebugDocumentText interface.

In addition to the methods inherited from IUnknown, the IDebugDocumentTextEvents interface exposes the following methods.

Methods in Vtable Order

Method Description

IDebugDocumentTextEvents::onDestroy

Indicates that the underlying document has been destroyed and is no longer valid

IDebugDocumentTextEvents::onInsertText

Indicates that new text has been added to the document

IDebugDocumentTextEvents::onRemoveText

Indicates that text has been removed from the document.

IDebugDocumentTextEvents::onReplaceText

Indicates that text has been replaced.

IDebugDocumentTextEvents::onUpdateTextAttributes

Indicates that the text attributes associated with the underlying character position range have changed.

IDebugDocumentTextEvents::onUpdateDocumentAttributes

Indicates that the document attributes changed.