Class BookmarkNode
Represents a bookmark in the document hierarchy.
Inheritance
Inherited Members
Namespace: Telerik.Reporting.Service
Assembly: Telerik.Reporting.Service.dll
Syntax
public class BookmarkNode : IBookmarkNode
Constructors
BookmarkNode()
Declaration
public BookmarkNode()
Properties
BookmarkNodes
Internal use only
Declaration
public IEnumerable<IBookmarkNode> BookmarkNodes { get; }
Property Value
System.Collections.Generic.IEnumerable<IBookmarkNode>
|
Implements
Children
The list of all child BookmarkNodes.
Declaration
public List<BookmarkNode> Children { get; set; }
Property Value
System.Collections.Generic.List<BookmarkNode>
|
Id
Gets or sets a list of the BookmarkNode this BookmarkNode points to.
Declaration
public string Id { get; set; }
Property Value
System.String
|
Implements
Page
The number of the page where the current bookmark appears.
Declaration
public int Page { get; set; }
Property Value
System.Int32
|
Implements
Text
The label of the current BookmarkNode when displayed in the report viewer's Document Map.
Declaration
public string Text { get; set; }
Property Value
System.String
|
Implements
X
The X-coordinate of the location in the page of the current bookmark.
Declaration
public int X { get; set; }
Property Value
System.Int32
|
Implements
Y
The Y-coordinate of the location in the page of the current bookmark.
Declaration
public int Y { get; set; }
Property Value
System.Int32
|