Bookmark Constructor (String, Boolean)

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Initializes a new instance of the Bookmark class.

Namespace:  Apitron.PDF.Kit.Interactive.Navigation.DocumentLevel
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public Bookmark(
	string title,
	bool isOpen = false
)

Parameters

title
Type: SystemString
The title.
isOpen (Optional)
Type: SystemBoolean
if set to true [is open].
Examples

C#
FixedDocument document = new FixedDocument();
Page page = new Page();

Bookmark bookmark = new Bookmark("Page outline #1");

document.Bookmarks.AddLast(bookmark);
document.Pages.Add(page);
See Also

Reference