EditSpan Class

Describes an edit operation.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
  Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)

Syntax

<CLSCompliantAttribute(False)> _
Public Class EditSpan

Dim instance As EditSpan
[CLSCompliantAttribute(false)]
public class EditSpan
[CLSCompliantAttribute(false)]
public ref class EditSpan
public class EditSpan

Remarks

This class is used with the EditArray class to manage and apply edit operations. This class describes either a replacement or insertion operation, using a span and the new text. A deletion operation is a special case of a replacement where the replacement string is empty.

Replace Text

Set up a span that describes the text to replace and specify the text to replace with. When the edit operation is applied, the span is completely replaced by the new text.

Insert Text

Set up a span that describes the point of insertion but has no length; that is, the end point is the same as the start point. When the edit operation is applied, the new text is inserted at the specified point.

Delete Text

The delete operation is a special case of the replace operation. Set up a span that describes the text to delete and specify an empty string for the replacement text. When the edit operation is applied, the span is completely replaced by the new text, which in this case is an empty string. Since a span can describe multiple lines, whole lines can be deleted this way.

Notes to Implementers:

This class contains all the functionality needed to describe an edit operation. There is no need to derive from this class.

Notes to Callers:

Instantiate this class with a TextSpan object and a string to describe a single edit operation.

Inheritance Hierarchy

System.Object
  Microsoft.VisualStudio.Package.EditSpan

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

EditSpan Members

Microsoft.VisualStudio.Package Namespace