IViewTagAggregatorFactoryService.CreateTagAggregator<T> Method (ITextView)

Creates a tag aggregator for the specified ITextView 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 _
) As ITagAggregator(Of T)
ITagAggregator<T> CreateTagAggregator<T>(
    ITextView textView
)
where T : ITag
generic<typename T>
where T : ITag
ITagAggregator<T>^ CreateTagAggregator(
    ITextView^ textView
)
abstract CreateTagAggregator : 
        textView:ITextView -> ITagAggregator<'T>  when 'T : ITag
JScript does not support generic types or methods.

Type Parameters

  • T
    The type of tag to aggregate.

Parameters

Return Value

Type: Microsoft.VisualStudio.Text.Tagging.ITagAggregator<T>
The ITagAggregator<T> of the correct type for textView.

Remarks

The BatchedTagsChanged event will be raised on the thread used to create the tag aggregator.

.NET Framework Security

See Also

Reference

IViewTagAggregatorFactoryService Interface

CreateTagAggregator Overload

Microsoft.VisualStudio.Text.Tagging Namespace