Gets a collection of all saved bookmarks / areas of interest defined in this diagram.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public ObservableCollection<DiagramBookmark> Bookmarks { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property Bookmarks As ObservableCollection(Of DiagramBookmark) |
A list of DiagramBookmark objects.
RemarksBookmarks are displayed by the MiniMap control.
At this time, the control does not provide a built-in way to add bookmarks interactively. You can let users create bookmarks from event handlers such as DoubleClicked or from a context menu. Alternatively, you can create bookmarks programmatically to reflect the diagram's contents by calculating them from node and link positions and metadata.
See Also