How do I insert hidden bookmarks to the document?
Essential® DocIO supports to insert hidden bookmarks to the document. A bookmark text that will be inserted preceded with an underscore character [ _ ] is considered as hidden bookmark.
C#
// Indicating hidden bookmark text start.
paragraph.AppendBookmarkStart ( "_HiddenText" );
// Writing bookmark text
paragraph.AppendText ( "Hidden Bookmark Text" );
// Indicating hidden bookmark text end.
paragraph.AppendBookmarkEnd ( "_HiddenText" );
VB
' Indicating hidden bookmark text start.
paragraph.AppendBookmarkStart ("_HiddenText")
' Writing bookmark text
paragraph.AppendText ("Hidden Bookmark Text")
' Indicating hidden bookmark text end.
paragraph.AppendBookmarkEnd ("_HiddenText")
Here is the sample.
I hope you enjoyed learning about how to insert hidden bookmarks into the document.
You can refer to our WinForms word feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms word example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!