Paint box

How can i find Bookmark and set text with symbol n

Hi

Thanks for your request. Please try using the following code to achieve what you need:

// Open document
Document doc = new Document("Test.docx");
DocumentBuilder builder = new DocumentBuilder(doc);
// Go to Bookmark by name
builder.MoveToBookmark("TestBookmark");
// Insert sumbol
builder.Writeln("\x006E");
doc.Save("out.docx");

Please let me know in case of any issues. I will be glad to help you.
Best regards,

Sorry.The issues is not resolved.I got this symbol n

Hi

Thanks for your request. Please try using the following code:

// Open document
Document doc = new Document("Test.docx");
DocumentBuilder builder = new DocumentBuilder(doc);
// Go to Bookmark by name
builder.MoveToBookmark("TestBookmark");
// Set font
builder.Font.Name = "Wingdings";
// Insert sumbol
builder.Writeln("\x006E");
doc.Save("out.docx");

Best regards,