Table of Contents

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

PdfColor

DescendantBookmarks

Gets a collection of all the descendant bookmarks of this bookmark.

public BookmarksCollection DescendantBookmarks { get; }

Property Value

BookmarksCollection

Destination

Gets or sets the bookmark destination.

public ExplicitDestination Destination { get; set; }

Property Value

ExplicitDestination

ParentBookmark

Gets the parent bookmark of this bookmark or null if the bookmark has no parent.

public Bookmark ParentBookmark { get; }

Property Value

Bookmark

Style

Gets or sets the bookmark text style.

public PdfBookmarkStyle Style { get; set; }

Property Value

PdfBookmarkStyle

Text

Gets or sets the PDF bookmark text displayed in PDF document

public string Text { get; set; }

Property Value

string