diff --git a/PROMS/Volian.Print.Library/vlnPrintObject.cs b/PROMS/Volian.Print.Library/vlnPrintObject.cs index 9a8a24b0..a5a724b7 100644 --- a/PROMS/Volian.Print.Library/vlnPrintObject.cs +++ b/PROMS/Volian.Print.Library/vlnPrintObject.cs @@ -207,7 +207,7 @@ namespace Volian.Print.Library rtfSB.Append("}"); return rtfSB.ToString(); } - protected static string AddFontTable(System.Drawing.Font font) + public static string AddFontTable(System.Drawing.Font font) { StringBuilder rtfSB = new StringBuilder(); StringBuilder sbbeg = new StringBuilder(); @@ -244,7 +244,7 @@ namespace Volian.Print.Library float fE = iFont.BaseFont.GetWidthPointKerned("!", 12); return fW == fE; } - protected static iTextSharp.text.Paragraph RtfToParagraph(string rtf) + public static iTextSharp.text.Paragraph RtfToParagraph(string rtf) { IRtfDocument rtfDoc = RtfInterpreterTool.BuildDoc(rtf); Rtf2iTextSharp rtf2IText = new Rtf2iTextSharp(rtfDoc);