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);