IEnumerable<CodeElement> Patterns { get; }
ReadOnly Property Patterns As IEnumerable(Of CodeElement)
Get
property IEnumerable<CodeElement^>^ Patterns {
IEnumerable<CodeElement^>^ get ();
}
abstract Patterns : IEnumerable<CodeElement> with get
When implementing this property, you should return a CodeElement for each element that needs a different formatting style, such as keywords, comments or strings. The Name property will be used as the CSS class name in the HTML output of the CodeFormatter.
When processing the source code, the CodeFormatter will process the patterns in the order they are provided here.