ITextEditorFactoryService.CreateTextView Method (ITextBuffer)
Creates an IWpfTextView that displays the contents of the specified text buffer.
Namespace: Microsoft.VisualStudio.Text.Editor
Assembly: Microsoft.VisualStudio.Text.UI.Wpf (in Microsoft.VisualStudio.Text.UI.Wpf.dll)
Syntax
'Declaration
Function CreateTextView ( _
textBuffer As ITextBuffer _
) As IWpfTextView
IWpfTextView CreateTextView(
ITextBuffer textBuffer
)
IWpfTextView^ CreateTextView(
ITextBuffer^ textBuffer
)
abstract CreateTextView :
textBuffer:ITextBuffer -> IWpfTextView
function CreateTextView(
textBuffer : ITextBuffer
) : IWpfTextView
Parameters
textBuffer
Type: Microsoft.VisualStudio.Text.ITextBufferThe ITextBuffer that provides the text for the view.
Return Value
Type: Microsoft.VisualStudio.Text.Editor.IWpfTextView
An IWpfTextView having all predefined text view roles.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | textBuffer is nulla null reference (Nothing in Visual Basic). |
Remarks
An ITextBuffer can be displayed in multiple views. A trivial ITextDataModel is constructed, and an ITextViewModel is constructed based on the IContentType of the textBuffer.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.