IViewTagAggregatorFactoryService.CreateTagAggregator<T> Method (ITextView, TagAggregatorOptions)
Creates a tag aggregator for the specified ITextView and with the given options that aggregates tags of the given type.
Namespace: Microsoft.VisualStudio.Text.Tagging
Assembly: Microsoft.VisualStudio.Text.UI (in Microsoft.VisualStudio.Text.UI.dll)
Syntax
'Declaration
Function CreateTagAggregator(Of T As ITag) ( _
textView As ITextView, _
options As TagAggregatorOptions _
) As ITagAggregator(Of T)
ITagAggregator<T> CreateTagAggregator<T>(
ITextView textView,
TagAggregatorOptions options
)
where T : ITag
generic<typename T>
where T : ITag
ITagAggregator<T>^ CreateTagAggregator(
ITextView^ textView,
TagAggregatorOptions options
)
abstract CreateTagAggregator :
textView:ITextView *
options:TagAggregatorOptions -> ITagAggregator<'T> when 'T : ITag
JScript does not support generic types or methods.
Type Parameters
- T
The type of tag to aggregate.
Parameters
textView
Type: Microsoft.VisualStudio.Text.Editor.ITextViewThe ITextView with which to get the ITagAggregator<T>.
options
Type: Microsoft.VisualStudio.Text.Tagging.TagAggregatorOptionsThe options to use for the newly created aggregator.
Return Value
Type: Microsoft.VisualStudio.Text.Tagging.ITagAggregator<T>
The ITagAggregator<T> of the correct type for textView.
.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.