blob: 18edf49743c2dc0cb5f2fa6d0c8c41cb5d243cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Text.RegularExpressions;
namespace Tango.Scripting.Editors.Highlighting
{
/// <summary>
/// A highlighting rule.
/// </summary>
[Serializable]
public class HighlightingRule
{
/// <summary>
/// Gets/Sets the regular expression for the rule.
/// </summary>
public Regex Regex { get; set; }
/// <summary>
/// Gets/Sets the highlighting color.
/// </summary>
public HighlightingColor Color { get; set; }
/// <inheritdoc/>
public override string ToString()
{
return "[" + GetType().Name + " " + Regex + "]";
}
}
}
|