Class Bookmark
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents a bookmark in the PDF document used to outline a section of the PDF document
[ClassInterface(ClassInterfaceType.AutoDual)]
public class Bookmark
- Inheritance
-
Bookmark
- Inherited Members
Properties
Color
Gets or sets the bookmark text color.
public PdfColor Color { get; set; }
Property Value
DescendantBookmarks
Gets a collection of all the descendant bookmarks of this bookmark.
public BookmarksCollection DescendantBookmarks { get; }
Property Value
Destination
Gets or sets the bookmark destination.
public ExplicitDestination Destination { get; set; }
Property Value
ParentBookmark
Gets the parent bookmark of this bookmark or null if the bookmark has no parent.
public Bookmark ParentBookmark { get; }
Property Value
Style
Gets or sets the bookmark text style.
public PdfBookmarkStyle Style { get; set; }
Property Value
Text
Gets or sets the PDF bookmark text displayed in PDF document
public string Text { get; set; }