Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 MigraDoc 中,如果我有一个段落,我怎么能只加粗段落中的一些文本,而不是整个段落。
编辑:下面是我用来添加粗体段落的典型代码。
var paragraph = section.AddParagraph("This text"); paragraph.Format.Font.Bold = true;
我不能只添加单独的段落来分割文本,因为 MigraDoc 在段落之间放置了空格。
尝试以下几行:
var paragraph = section.AddParagraph("This text"); paragraph.AddFormattedText("Text in Bold Style", TextFormat.Bold);