Interface ITagger<T>
Describes a tagger class behavior.
Namespace: Telerik.Windows.SyntaxEditor.Core.Tagging
Assembly: Telerik.Windows.SyntaxEditor.Core.dll
Syntax
public interface ITagger<T>
where T : ITag
Type Parameters
T
|
Methods
GetTags(NormalizedSnapshotSpanCollection)
Gets the collection of tags.
Declaration
IEnumerable<TagSpan<T>> GetTags(NormalizedSnapshotSpanCollection spans)
Parameters
NormalizedSnapshotSpanCollection
spans
|
Returns
System.Collections.Generic.IEnumerable<TagSpan<T>>
|
Events
TagsChanged
Occurs when the tags collection is changed.
Declaration
event EventHandler<TagsChangedEventArgs> TagsChanged
Event Type
System.EventHandler<TagsChangedEventArgs>
|