AddBookmark
Added the bookmark to the specified range
Parameters:
Name |
Type |
Description |
sName |
String
|
|
Returns:
- Type
-
bool
Example
Copy code
builder.CreateFile( "docx ");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oParagraph.AddText( "ONLYOFFICE Document Builder ");
oRange = oDocument.GetRange(0, 9);
oRange.AddBookmark( "Bookmark ");
builder.SaveFile( "docx ", "AddBookmark.docx ");
builder.CloseFile();
Resulting document