使用iTextSharp在句子中加粗单个单词
本文关键字:单个单 iTextSharp 句子 使用 | 更新日期: 2023-09-27 18:31:28
是否可以使用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中使用富文本值加粗会有所帮助?
不确定它是否完全适合您的情况,但可能会让您到达您需要去的地方。