Class
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:

cs-api-definition
public class Bookmark

Inheritance: objectBookmark

Constructors

Bookmark(RadFlowDocument, string)

Initializes a new instance of the Bookmark class with the specified name in the given document.

Declaration

cs-api-definition
public Bookmark(RadFlowDocument document, string name)

Parameters

document

RadFlowDocument

The document.

name

string

The name.

Bookmark(RadFlowDocument, string, int?, int?)

Initializes a new instance of the Bookmark class with the specified name and optional column range for table bookmarks.

Declaration

cs-api-definition
public Bookmark(RadFlowDocument document, string name, int? fromColumn, int? toColumn)

Parameters

document

RadFlowDocument

The document.

name

string

The name.

fromColumn

int?

From column.

toColumn

int?

To column.

Properties

BookmarkRangeEnd

Gets the inline marker that defines the end position of this bookmark's range.

Declaration

cs-api-definition
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

cs-api-definition
public BookmarkRangeStart BookmarkRangeStart { get; }

Property Value

BookmarkRangeStart

The bookmark range start.

Document

Gets the document that contains this bookmark.

Declaration

cs-api-definition
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

cs-api-definition
public int? FromColumn { get; }

Property Value

int?

From column.

Name

Gets the unique name that identifies this bookmark for navigation and cross-referencing.

Declaration

cs-api-definition
public string Name { get; }

Property Value

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

cs-api-definition
public int? ToColumn { get; }

Property Value

int?

To column.