I have for example this String "
Hello Word
" and I use InsertHtml to put in the document, after I need to return to the paragraph for insert in the beginning other string with bold, for example “My program say:”, how I can do that??? thanks
Hi
Thank you for your interest in Aspose products. You can try using the following code.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// insert html
builder.InsertHtml("<b>Hello Word</b>");
// get index of current paragraph
int index = builder.CurrentSection.Body.Paragraphs.IndexOf(builder.CurrentParagraph);
// move to previouse paragraph
builder.MoveToParagraph(index - 1, 0);
// write bold text
builder.PushFont();
builder.Font.Bold = true;
builder.Write("My program say:");
builder.PopFont();
doc.Save(@"256_103829_Miguelati\out.doc");
Please let me know if you would like to know something else.
Best regards.