Click or drag to resize

BookmarkCreate Method

Creates a new valid Bookmark with given title in the specified document.

Namespace:  pdftron.PDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public static Bookmark Create(
	PDFDoc doc,
	string text
)

Parameters

doc
Type: pdftron.PDFPDFDoc
The document in which a Bookmark is to be created.
text
Type: SystemString
The title string value of the new Bookmark.

Return Value

Type: Bookmark
The new Bookmark.
Remarks
The new Bookmark is not linked to the outline tree. Use AddChild()/AddNext()/AddPrev() methods in order to link the Bookmark to the outline tree
See Also