IVsTextBufferEx Interface

Definition

Adds methods to manage change markers to the IVsTextBuffer interface.

public interface class IVsTextBufferEx
public interface class IVsTextBufferEx
__interface IVsTextBufferEx
[System.Runtime.InteropServices.Guid("9F0823E9-544D-4FA0-9400-0D602C9A510E")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsTextBufferEx
[System.Runtime.InteropServices.Guid("9F0823E9-544D-4FA0-9400-0D602C9A510E")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsTextBufferEx
[<System.Runtime.InteropServices.Guid("9F0823E9-544D-4FA0-9400-0D602C9A510E")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsTextBufferEx = interface
[<System.Runtime.InteropServices.Guid("9F0823E9-544D-4FA0-9400-0D602C9A510E")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IVsTextBufferEx = interface
Public Interface IVsTextBufferEx
Attributes

Remarks

Use this interface to manage change tracking in the text buffer.

Call GetTrackChanges to return the change tracking status of the text buffer.

Suppress the insertion of further change markers in the buffer by calling SetTrackChangesSuppression.

Notes to Callers

This interface is implemented as part of the VsTextBuffer object. As a VSPackage implementer, call QueryInterface to get a pointer to the IVsTextBufferEx interface when using the core editor objects.

Methods

GetTrackChanges(Int32)

Determines the change tracking status of the text buffer.

SetTrackChangesSuppression(Int32)

Suppresses change marking in the text buffer.

Applies to