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

时间:2012-04-18 15:54:40

标签: c# 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);
有人请帮助我

3 个答案:

答案 0 :(得分:38)

完成您尝试的方法的方法是使用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));

答案 1 :(得分:2)

还可以创建类似

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

答案 2 :(得分:0)

也许此链接Bolding with Rich Text Values in iTextSharp会有帮助吗?

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