ClassVisualBasicTagger
Class defining Visual Basic programming language keywords and comments.
Definition
Namespace:Telerik.Windows.Controls.SyntaxEditor.Tagging.Taggers
Assembly:Telerik.Windows.Controls.SyntaxEditor.dll
Syntax:
public class VisualBasicTagger : WordTaggerBase, ITagger<ClassificationTag>
Inheritance: objectTaggerBase<ClassificationTag>WordTaggerBaseVisualBasicTagger
Implements:
Inherited Members
Constructors
VisualBasicTagger(RadSyntaxEditor)
Initializes a new instance of the VisualBasicTagger class.
Declaration
public VisualBasicTagger(RadSyntaxEditor editor)
Parameters
editor
The code editor.
Properties
StringMatchingRegex
Gets or sets the regex pattern used to match strings in the documents which this tagger recognizes.
Declaration
protected override string StringMatchingRegex { get; set; }
Property Value
Overrides
Methods
GetCharType(char)
Gets the type of the VisualBasic char. 3 - VB commenting char, 2 - punctuation or symbol, 1 - whitespace, 0 - preprocessor, letter and all other chars.
GetWordsToClassificationTypes()
Gets the words to classification types.
Declaration
protected override Dictionary<string, ClassificationType> GetWordsToClassificationTypes()
Returns
Dictionary<string, ClassificationType>
Overrides
OnWordSplit(int, string)
Called when a word is split during processing of a line string.
SplitIntoWords(string)
Splits the given string into collection of words.