Class Bookmark
Represents the bookmark attributes of the loaded document in the PDF Viewer.
Inheritance
System.Object
Bookmark
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class Bookmark : Object
Constructors
Bookmark()
Declaration
public Bookmark()
Properties
Children
Gets the child level bookmark collection of the current bookmark item.
Declaration
public List<Bookmark> Children { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<Bookmark> |
Destination
Gets the bookmark destination attributes of the specific bookmark.
Declaration
public BookmarkDestination Destination { get; set; }
Property Value
Type |
---|
BookmarkDestination |
HasChild
Gets the value to check whether the bookmark have child level bookmarks or not. By default it is false. If the bookmark have children it returns true.
Declaration
public bool HasChild { get; set; }
Property Value
Type |
---|
System.Boolean |
Id
Gets the Id of the bookmark.
Declaration
public string Id { get; set; }
Property Value
Type |
---|
System.String |
Title
Gets the title of bookmark.
Declaration
public string Title { get; set; }
Property Value
Type |
---|
System.String |