IDkmScriptDocumentContentRemoveNotification.OnScriptDocumentContentRemove Method

Definition

OnScriptDocumentContentRemove is invoked as part of event processing. See interface definition for more information.

public:
 void OnScriptDocumentContentRemove(Microsoft::VisualStudio::Debugger::Script::DkmScriptDocument ^ scriptDocument, Microsoft::VisualStudio::Debugger::Symbols::DkmTextSpan span, int charsToRemove, Microsoft::VisualStudio::Debugger::DkmEventDescriptor ^ eventDescriptor);
public void OnScriptDocumentContentRemove (Microsoft.VisualStudio.Debugger.Script.DkmScriptDocument scriptDocument, Microsoft.VisualStudio.Debugger.Symbols.DkmTextSpan span, int charsToRemove, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnScriptDocumentContentRemove : Microsoft.VisualStudio.Debugger.Script.DkmScriptDocument * Microsoft.VisualStudio.Debugger.Symbols.DkmTextSpan * int * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnScriptDocumentContentRemove (scriptDocument As DkmScriptDocument, span As DkmTextSpan, charsToRemove As Integer, eventDescriptor As DkmEventDescriptor)

Parameters

scriptDocument
DkmScriptDocument

[In] Represents a document which is executing in a script runtime environment. For example, the Microsoft JavaScript engine.

span
DkmTextSpan

[In] The text span of the removed text. For aggregate documents (DkmScriptDocumentFlags.AggregateDocument is set), this must start at the begging of a line, and correspond to a previously added section.

charsToRemove
Int32

[In] Number of characters within the section to remove.

eventDescriptor
DkmEventDescriptor

[In] Describes the event being processed.

Applies to