Class Bookmark
Named location within a document that enables navigation and cross-referencing, defined by paired start and end range markers.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class Bookmark
Constructors
Bookmark(RadFlowDocument, String)
Initializes a new instance of the Bookmark class with the specified name in the given document.
Declaration
public Bookmark(RadFlowDocument document, string name)
Parameters
|
RadFlowDocument
document
The document. |
|
System.String
name
The name. |
Bookmark(RadFlowDocument, String, Nullable<Int32>, Nullable<Int32>)
Initializes a new instance of the Bookmark class with the specified name and optional column range for table bookmarks.
Declaration
public Bookmark(RadFlowDocument document, string name, int? fromColumn, int? toColumn)
Parameters
|
RadFlowDocument
document
The document. |
|
System.String
name
The name. |
|
System.Nullable<System.Int32>
fromColumn
From column. |
|
System.Nullable<System.Int32>
toColumn
To column. |
Properties
BookmarkRangeEnd
Gets the inline marker that defines the end position of this bookmark's range.
Declaration
public BookmarkRangeEnd BookmarkRangeEnd { get; }
Property Value
|
BookmarkRangeEnd
The bookmark range end. |
BookmarkRangeStart
Gets the inline marker that defines the start position of this bookmark's range.
Declaration
public BookmarkRangeStart BookmarkRangeStart { get; }
Property Value
|
BookmarkRangeStart
The bookmark range start. |
Document
Gets the document that contains this bookmark.
Declaration
public RadFlowDocument Document { get; }
Property Value
|
RadFlowDocument
The document. |
FromColumn
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.
Declaration
public int? FromColumn { get; }
Property Value
|
System.Nullable<System.Int32>
From column. |
Name
Gets the unique name that identifies this bookmark for navigation and cross-referencing.
Declaration
public string Name { get; }
Property Value
|
System.String
The name. |
ToColumn
Gets the zero-based index of the last table column included in this bookmark's range, or null if the bookmark is not column-specific.
Declaration
public int? ToColumn { get; }
Property Value
|
System.Nullable<System.Int32>
To column. |