Word.Interfaces.BookmarkUpdateData interface
An interface for updating data on the Bookmark
object, for use in bookmark.set({ ... })
.
Properties
end | Specifies the ending character position of the bookmark. |
range | Returns a |
start | Specifies the starting character position of the bookmark. |
Property Details
end
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the ending character position of the bookmark.
end?: number;
Property Value
number
Remarks
range
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Returns a Range
object that represents the portion of the document that's contained in the Bookmark
object.
range?: Word.Interfaces.RangeUpdateData;
Property Value
Remarks
start
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the starting character position of the bookmark.
start?: number;
Property Value
number