ITextEdit Methods

 

Namespace:   Microsoft.VisualStudio.Text
Assembly:  Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)

NameDescription
System_CAPS_pubmethodApply()

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.)

System_CAPS_pubmethodCancel()

Abandons all modifications started using this ITextBufferEdit object. Any further calls on this object will result in an InvalidOperationException.(Inherited from ITextBufferEdit.)

System_CAPS_pubmethodDelete(Int32, Int32)

Deletes a sequence of characters from the buffer.

System_CAPS_pubmethodDelete(Span)

Deletes a sequence of characters from the buffer.

System_CAPS_pubmethodDispose()

(Inherited from IDisposable.)

System_CAPS_pubmethodInsert(Int32, array<Char>^, Int32, Int32)

Inserts an array of characters at the specified position in the ITextBuffer.

System_CAPS_pubmethodInsert(Int32, String^)

Inserts the given text at the specified positionin the text buffer.

System_CAPS_pubmethodReplace(Int32, Int32, String^)

Replaces a sequence of characters with different text.

System_CAPS_pubmethodReplace(Span, String^)

Replaces a sequence of characters with different text.

Return to top
Show: