Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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, _
roles As ITextViewRoleSet, _
parentOptions As IEditorOptions _
) As IWpfTextView
IWpfTextView CreateTextView(
ITextBuffer textBuffer,
ITextViewRoleSet roles,
IEditorOptions parentOptions
)
IWpfTextView^ CreateTextView(
ITextBuffer^ textBuffer,
ITextViewRoleSet^ roles,
IEditorOptions^ parentOptions
)
abstract CreateTextView :
textBuffer:ITextBuffer *
roles:ITextViewRoleSet *
parentOptions:IEditorOptions -> IWpfTextView
function CreateTextView(
textBuffer : ITextBuffer,
roles : ITextViewRoleSet,
parentOptions : IEditorOptions
) : IWpfTextView
Parameters
- textBuffer
Type: Microsoft.VisualStudio.Text.ITextBuffer
The ITextBuffer that provides the text for the view.
- roles
Type: Microsoft.VisualStudio.Text.Editor.ITextViewRoleSet
The set of roles filled by the view.
- parentOptions
Type: Microsoft.VisualStudio.Text.Editor.IEditorOptions
The options environment for the text view.
Return Value
Type: Microsoft.VisualStudio.Text.Editor.IWpfTextView
An IWpfTextView.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | textBuffer or roles or parentOptions is null. |
Remarks
An ITextBuffer can be displayed in multiple views. A trivial ITextDataModel will be constructed and an ITextViewModel will be constructed based on the IContentType of the textBuffer and the roles.
.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.