在MigraDoc中,如果我有一个段落,我怎么才能在段落中加粗一些文本,而不是整段。
编辑: 下面是我用来添加粗体段落的典型代码。
var paragraph = section.AddParagraph("This text");
paragraph.Format.Font.Bold = true;
我不能只添加拆分文本的单独段落,因为MigraDoc会在段落之间添加空格。
答案 0 :(得分:25)
请尝试以下几行:
var paragraph = section.AddParagraph("This text");
paragraph.AddFormattedText("Text in Bold Style", TextFormat.Bold);