Interface
ITagger<T>

Describes a tagger class behavior.

Definition

Namespace:Telerik.Windows.SyntaxEditor.Core.Tagging

Assembly:Telerik.Windows.SyntaxEditor.Core.dll

Type Parameters:

T

Syntax:

cs-api-definition
public interface ITagger<T> where T : ITag

Methods

GetTags(NormalizedSnapshotSpanCollection)

Gets the collection of tags.

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
IEnumerable<TagSpan<T>> GetTags(NormalizedSnapshotSpanCollection spans)

Parameters

spans

NormalizedSnapshotSpanCollection

Returns

IEnumerable<TagSpan<T>>

Events

TagsChanged

Occurs when the tags collection is changed.

Declaration

cs-api-definition
event EventHandler<TagsChangedEventArgs> TagsChanged

Event Value

EventHandler<TagsChangedEventArgs>