Class Bookmark
Represents a custom bookmark with a name and associated page number.
Inheritance
System.Object
Bookmark
Implements
System.ComponentModel.INotifyPropertyChanged
Namespace: Syncfusion.Maui.PdfViewer
Assembly: Syncfusion.Maui.PdfViewer.dll
Syntax
public class Bookmark : Object, INotifyPropertyChanged
Constructors
Bookmark(String, Int32)
Initializes a new instance of the Bookmark class with the specified name and page number.
Declaration
public Bookmark(string name, int pageNumber)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.Int32 | pageNumber |
Properties
Name
Gets or sets the name of the bookmark.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
PageNumber
Gets the page number associated with the bookmark.
Declaration
public int PageNumber { get; }
Property Value
Type |
---|
System.Int32 |
Events
PropertyChanged
Event triggered when a property of the bookmark changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged