Bookmark
Named location within a document that enables navigation and cross-referencing, defined by paired start and end range markers.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
public class Bookmark
Inheritance: objectBookmark
Constructors
Initializes a new instance of the Bookmark class with the specified name and optional column range for table bookmarks.
public Bookmark(RadFlowDocument document, string name, int? fromColumn, int? toColumn)
The document.
namestringThe name.
fromColumnint?From column.
toColumnint?To column.
Initializes a new instance of the Bookmark class with the specified name in the given document.
public Bookmark(RadFlowDocument document, string name)
The document.
namestringThe name.
Properties
Gets the inline marker that defines the end position of this bookmark's range.
public BookmarkRangeEnd BookmarkRangeEnd { get; }
The bookmark range end.
Gets the inline marker that defines the start position of this bookmark's range.
public BookmarkRangeStart BookmarkRangeStart { get; }
The bookmark range start.
Gets the document that contains this bookmark.
public RadFlowDocument Document { get; }
The document.
Gets the zero-based index of the first table column included in this bookmark's range, or null if the bookmark is not column-specific.
public int? FromColumn { get; }
From column.
Gets the unique name that identifies this bookmark for navigation and cross-referencing.
public string Name { get; }
The name.