| | |
| | | public static Regex Color_Start_Regex = new Regex(@"<color=#[0-9a-zA-Z]+>", RegexOptions.Singleline);
|
| | | public static Regex Color_End_Regex = new Regex(@"</color>", RegexOptions.Singleline);
|
| | | public static Regex Space_Regex = new Regex(@"<Space=([0-9]*)>", RegexOptions.Singleline);
|
| | | public static Regex Size_Start_Regex = new Regex(@"<Size=([0-9]+)>", RegexOptions.Singleline);
|
| | | public static Regex Size_End_Regex = new Regex(@"</Size>", RegexOptions.Singleline);
|
| | | public static Regex Size_Start_Regex = new Regex(@"<[Ss]ize=([0-9]+)>", RegexOptions.Singleline);
|
| | | public static Regex Size_End_Regex = new Regex(@"</[Ss]ize>", RegexOptions.Singleline);
|
| | |
|
| | | private static RichTextEventEnum eventType = RichTextEventEnum.TABLE;
|
| | |
|