ITextEdit Methods
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
| Name | Description | |
|---|---|---|
![]() | Apply() | Commits all the modifications made with this ITextBufferEdit object to the underlying ITextBuffer. It also causes the ITextBuffer to generate a new snapshot and raise its Changed event if any modifications were made. (Inherited from ITextBufferEdit.) |
![]() | Cancel() | Abandons all modifications started using this ITextBufferEdit object. Any further calls on this object will result in an InvalidOperationException.(Inherited from ITextBufferEdit.) |
![]() | Delete(Int32, Int32) | Deletes a sequence of characters from the buffer. |
![]() | Delete(Span) | Deletes a sequence of characters from the buffer. |
![]() | Dispose() | (Inherited from IDisposable.) |
![]() | Insert(Int32, array<Char>^, Int32, Int32) | Inserts an array of characters at the specified position in the ITextBuffer. |
![]() | Insert(Int32, String^) | Inserts the given text at the specified positionin the text buffer. |
![]() | Replace(Int32, Int32, String^) | Replaces a sequence of characters with different text. |
![]() | Replace(Span, String^) | Replaces a sequence of characters with different text. |
