Class Bookmark
Represents a bookmark.
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.
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.
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 bookmark range end.
Declaration
public BookmarkRangeEnd BookmarkRangeEnd { get; }
Property Value
BookmarkRangeEnd
The bookmark range end. |
BookmarkRangeStart
Gets the bookmark range start.
Declaration
public BookmarkRangeStart BookmarkRangeStart { get; }
Property Value
BookmarkRangeStart
The bookmark range start. |
Document
Gets the associated document.
Declaration
public RadFlowDocument Document { get; }
Property Value
RadFlowDocument
The document. |
FromColumn
Gets the index of the first column in the current row which is part of the bookmark.
Declaration
public int? FromColumn { get; }
Property Value
System.Nullable<System.Int32>
From column. |
Name
Gets the name of the bookmark.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
ToColumn
Gets the index of the last column in the current row which is part of the bookmark.
Declaration
public int? ToColumn { get; }
Property Value
System.Nullable<System.Int32>
To column. |