使用iTextSharp在句子中加一个单词

是否可以使用iTextSharp在句子中加粗单个单词? 我试图加粗几个单词而不必将字符串分成单个短语。

我想要这种类型的出局

例如: 取消原因见本法背面第1号法令指定的法定理由。

我的实际输出低于

例如:取消原因:见本法背面第1号法令指定的法定理由。

pdftb4 = new PdfPTable(1); pdftb4.WidthPercentage = 100; width = new float[1]; width[0] = 0.7F; pdftb4.SetWidths(width); pdfcel4 = new PdfPCell(new Phrase("\n REASON(S) FOR CANCELLATION: See Statutoryreason(s) designated by Code No(s) 1 on the reverse side hereof", docBlackFont10)); pdfcel4.Border = 0; pdfcel4.HorizontalAlignment = Element.ALIGN_LEFT; pdftb4.AddCell(pdfcel4); objDocument.Add(pdftb4); 

有人请帮帮我

完成你正在尝试的方法是使用Chunk s。 一个简单的例子是:

 var normalFont = FontFactory.GetFont(FontFactory.HELVETICA, 12); var boldFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 12); var phrase = new Phrase(); phrase.Add(new Chunk("REASON(S) FOR CANCELLATION:", boldFont)); phrase.Add(new Chunk(" See Statutoryreason(s) designated by Code No(s) 1 on the reverse side hereof", normalFont)); 

也可以创建字体

 Font verdanaBold = FontFactory.GetFont("Verdana", 7f, Font.BOLD); 

也许这个链接在iTextSharp中使用富文本值进行Bolding会有帮助吗?

不确定它是否完全符合您的情况,但可能会让您到达您需要去的地方。