Class DocumentMapNodeModel
Represents a node in the DocumentMap hierarchy. Used from SL and WPF viewers
Namespace: Telerik.ReportViewer.Common
Assembly: Telerik.ReportViewer.Wpf.dll
Syntax
public class DocumentMapNodeModel : ObservableObject, INotifyPropertyChanged
Constructors
DocumentMapNodeModel(IBookmarkNode)
Creates a new instance of DocumentMapNodeModel.
Declaration
public DocumentMapNodeModel(IBookmarkNode bookmark)
Parameters
IBookmark
|
Properties
BookmarkId
The identifier of the Bookmark
Declaration
public string BookmarkId { get; }
Property Value
System.
|
Children
The list of all child Bookmark
Declaration
public List<DocumentMapNodeModel> Children { get; }
Property Value
System.
|
IsExpanded
Determines if the corresponding UI node is expanded.
Declaration
public bool IsExpanded { get; set; }
Property Value
System.
|
Label
The text of the current Bookmark
Declaration
public string Label { get; }
Property Value
System.
|
Page
The number of the page where the current bookmark appears.
Declaration
public int Page { get; }
Property Value
System.
|
Text
The text of the current Bookmark
Declaration
public string Text { get; }
Property Value
System.
|
X
The X-coordinate of the location in the page of the current bookmark.
Declaration
public int X { get; }
Property Value
System.
|
Y
The Y-coordinate of the location in the page of the current bookmark.
Declaration
public int Y { get; }
Property Value
System.
|