GraphBuffersChangedEventArgs Constructor
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.
Initializes a new instance of GraphBuffersChangedEventArgs with the provided buffers.
public:
GraphBuffersChangedEventArgs(System::Collections::Generic::IList<Microsoft::VisualStudio::Text::ITextBuffer ^> ^ addedBuffers, System::Collections::Generic::IList<Microsoft::VisualStudio::Text::ITextBuffer ^> ^ removedBuffers);
public GraphBuffersChangedEventArgs (System.Collections.Generic.IList<Microsoft.VisualStudio.Text.ITextBuffer> addedBuffers, System.Collections.Generic.IList<Microsoft.VisualStudio.Text.ITextBuffer> removedBuffers);
new Microsoft.VisualStudio.Text.Projection.GraphBuffersChangedEventArgs : System.Collections.Generic.IList<Microsoft.VisualStudio.Text.ITextBuffer> * System.Collections.Generic.IList<Microsoft.VisualStudio.Text.ITextBuffer> -> Microsoft.VisualStudio.Text.Projection.GraphBuffersChangedEventArgs
Public Sub New (addedBuffers As IList(Of ITextBuffer), removedBuffers As IList(Of ITextBuffer))
Parameters
- addedBuffers
- IList<ITextBuffer>
The list of buffers that were added.
- removedBuffers
- IList<ITextBuffer>
The list of buffers that were removed.
Exceptions
Either addedBuffers
or removedBuffers
is null.