GetRange
Returns the bookmark range.
Syntax
expression.GetRange();
expression
- A variable that represents a ApiBookmark class.
Parameters
This method doesn't have any parameters.
Returns
Example
This example shows how to get bookmark range.
- Code
- Result
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("ONLYOFFICE Document Builder");
let range = doc.GetRange(0, 11);
range.AddBookmark("BookmarkName");
let bookmark = doc.GetBookmark("BookmarkName");
let bookmarkRange = bookmark.GetRange();
bookmarkRange.SetBold(true);
paragraph.AddLineBreak();
paragraph.AddText("Bookmark range is shown in bold");