Class PdfBookMark
Represents a PDF bookmark as seen in the sidebar of PDF reader software to help user's navigate.
Inheritance
System.Object
PdfBookMark
Namespace: IronPdf.Bookmarks
Assembly: IronPdf.dll
Syntax
public class PdfBookMark : Object
Constructors
PdfBookMark()
Declaration
public PdfBookMark()
Properties
IndentLevel
The indent level of the bookmark in the outline.
An indent level of 0 represents a bookmark in the root. A bookmark of N will be nested inside the most recent previous bookmark of IndentLevel N-1.
Declaration
public int IndentLevel { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageIndex
The zero based page number that the bookmark links to.
Declaration
public int PageIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the page. |
Text
The display text of the bookmark
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |