Interface ITagger<T>
Represents an interface that defines methods for tagging elements of type T in a document model.
Namespace: Telerik.Windows.Documents.Model.Code
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface ITagger<T>
where T : ClassificationTag
Type Parameters
T
|
Methods
GetTags(IDocumentEditor)
Retrieves a collection of tags associated with the specified document editor.
Declaration
IEnumerable<TaggedTextRange<T>> GetTags(IDocumentEditor editor)
Parameters
IDocumentEditor
editor
The document editor for which to retrieve the tags. |
Returns
System.Collections.Generic.IEnumerable<TaggedTextRange<T>>
A collection of tags associated with the provided document editor. |