Class Bookmark
Represents the bookmark attributes of the loaded document in the PDF Viewer.
Inherited Members
Namespace: Syncfusion.Blazor.SfPdfViewer
Assembly: Syncfusion.Blazor.SfPdfViewer.dll
Syntax
public class Bookmark
Constructors
Bookmark()
Declaration
public Bookmark()
Properties
Children
Gets the child level bookmark collection of the current bookmark item.
Declaration
[JsonPropertyName("child")]
public List<Bookmark> Children { get; set; }
Property Value
| Type |
|---|
| 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
[JsonPropertyName("hasChild")]
public bool HasChild { get; set; }
Property Value
| Type |
|---|
| bool |
Id
Gets the Id of the bookmark.
Declaration
[JsonPropertyName("Id")]
public string Id { get; set; }
Property Value
| Type |
|---|
| string |
Title
Gets the title of bookmark.
Declaration
[JsonPropertyName("title")]
public string Title { get; set; }
Property Value
| Type |
|---|
| string |