I am using GemBox.Document library in my ASP.Net Page. I have a paragraph which contains line breaks and I also need to set the paragraph to bold. I my below code the variable str contains line break characters.
TRY 1
Line breaks work well in the below code
var p3 = new Paragraph(wDoc, str);
How to set BOLD to this paragraph
TRY 2 Bold work well in the below code
var p3 = new Paragraph(wDoc,
new Run(wDoc, str) { CharacterFormat = { Bold = true } }
);
This doesn't allow line breaks
Please help for a solution
Probably the easiest way to do this is something like this:
Or this:
But just in case you're interested, the thing to note here is that line breaks are represented with
SpecialCharacter
objects, not withRun
objects.So the following would be the "manual" way in which you would need to handle those breaks yourself, you would need to add the correct elements to the
Paragraph.Inlines
collection:That is the same as if you were using this
Paragraph
constructor: