Class BookmarkItemViewModel
ViewModel class for the bookmark item.
Inherited Members
Namespace: Telerik.Windows.Controls.FixedDocumentViewersUI.Panels.ViewModels
Assembly: Telerik.Windows.Controls.FixedDocumentViewersUI.dll
Syntax
public class BookmarkItemViewModel : ViewModelBase, INotifyPropertyChanged, IDisposable
Properties
BookmarkItemModel
Gets the Telerik.Windows.Documents.Fixed.Model.Navigation.BookmarkItem instance related to this ViewModel.
Declaration
public BookmarkItem BookmarkItemModel { get; }
Property Value
Telerik.Windows.Documents.Fixed.Model.Navigation.BookmarkItem
|
Children
Gets the immediate children of the current bookmark item in the bookmarks hierarchy.
Declaration
public IEnumerable<BookmarkItemViewModel> Children { get; }
Property Value
System.Collections.Generic.IEnumerable<BookmarkItemViewModel>
|
IsExpanded
Gets or sets whether the bookmark item should be expanded or collapsed in the visual tree, when has any children.
Declaration
public bool IsExpanded { get; set; }
Property Value
System.Boolean
|
IsSelected
Gets or sets whether the bookmark item is marked as selected.
Declaration
public bool IsSelected { get; set; }
Property Value
System.Boolean
|
Path
Gets the textual path built from the most top-level parent to the current bookmark item.
Declaration
public string Path { get; }
Property Value
System.String
|