DocData.IVsTextStreamEvents.OnChangeStreamText 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.
Provides a notification from Visual Studio that something in the text has changed.
virtual void Microsoft.VisualStudio.TextManager.Interop.IVsTextStreamEvents.OnChangeStreamText(int iPos, int iOldLen, int iNewLen, int fLast) = Microsoft::VisualStudio::TextManager::Interop::IVsTextStreamEvents::OnChangeStreamText;
virtual void Microsoft.VisualStudio.TextManager.Interop.IVsTextStreamEvents.OnChangeStreamText(int iPos, int iOldLen, int iNewLen, int fLast) = Microsoft::VisualStudio::TextManager::Interop::IVsTextStreamEvents::OnChangeStreamText;
void Microsoft.VisualStudio.TextManager.Interop.IVsTextStreamEvents.OnChangeStreamText(int iPos, int iOldLen, int iNewLen, int fLast);
void IVsTextStreamEvents.OnChangeStreamText (int iPos, int iOldLen, int iNewLen, int fLast);
abstract member Microsoft.VisualStudio.TextManager.Interop.IVsTextStreamEvents.OnChangeStreamText : int * int * int * int -> unit
override this.Microsoft.VisualStudio.TextManager.Interop.IVsTextStreamEvents.OnChangeStreamText : int * int * int * int -> unit
Sub OnChangeStreamText (iPos As Integer, iOldLen As Integer, iNewLen As Integer, fLast As Integer) Implements IVsTextStreamEvents.OnChangeStreamText
Parameters
- iPos
- Int32
The position of the change in the underlying text buffer.
- iOldLen
- Int32
The old length of text in the underlying buffer.
- iNewLen
- Int32
The new length of text in the underlying buffer.
- fLast
- Int32
Not used.