DocumentMapNodeModel
Represents a node in the DocumentMap hierarchy. Used from SL and WPF viewers
Definition
Namespace:Telerik.ReportViewer.Common
Assembly:Telerik.ReportViewer.Wpf.dll
Syntax:
public class DocumentMapNodeModel : ObservableObject
Inheritance: objectObservableObjectDocumentMapNodeModel
Inherited Members
Constructors
Creates a new instance of DocumentMapNodeModel.
Properties
BookmarkId
string
The identifier of the BookmarkNode this model points to.
public string BookmarkId { get; }
The list of all child BookmarkNodes.
public List<DocumentMapNodeModel> Children { get; }
IsExpanded
bool
Determines if the corresponding UI node is expanded.
public bool IsExpanded { get; set; }
Label
string
The text of the current BookmarkNode when displayed in the report viewer's Document Map.
public string Label { get; }
Page
int
The number of the page where the current bookmark appears.
public int Page { get; }
Text
string
The text of the current BookmarkNode when displayed in the report viewer's Document Map.
public string Text { get; }
X
int
The X-coordinate of the location in the page of the current bookmark.
public int X { get; }
Y
int
The Y-coordinate of the location in the page of the current bookmark.
public int Y { get; }