B2020-065: font size characters for tables in tree view

This commit is contained in:
Kathy Ruffing 2020-05-05 14:35:40 +00:00
parent b8e688c14a
commit 4e2a9c0210

View File

@ -2888,6 +2888,7 @@ namespace VEPROMS.CSLA.Library
retval = Regex.Replace(retval, @"\\dn[320] ?", ""); retval = Regex.Replace(retval, @"\\dn[320] ?", "");
retval = Regex.Replace(retval, @"\\li[0-9]+ ?", ""); // changed the * to a + to "\\line " for hard returns part of bug fix B2015-140 retval = Regex.Replace(retval, @"\\li[0-9]+ ?", ""); // changed the * to a + to "\\line " for hard returns part of bug fix B2015-140
retval = Regex.Replace(retval, @"\\fi-[0-9]+ ?", ""); retval = Regex.Replace(retval, @"\\fi-[0-9]+ ?", "");
retval = Regex.Replace(retval, @"\\fs[0-9]+ ?", ""); // B2020-065: removed font size definition (introduced when allowing font sizes in tables)
return retval; return retval;
} }
public static string StripLinks(string rtf) public static string StripLinks(string rtf)