IDkmScriptDocumentContentRemoveNotification.OnScriptDocumentContentRemove Method
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.
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.