Creates a new bookmark and inserts it at the specified zero based position index in collection.

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public Bookmark InsertNewBookmark(
	int positionIndex,
	string text,
	ExplicitDestination destination
)
Visual Basic
Public Function InsertNewBookmark ( 
	positionIndex As Integer,
	text As String,
	destination As ExplicitDestination
) As Bookmark
Visual C++
public:
Bookmark^ InsertNewBookmark(
	int positionIndex, 
	String^ text, 
	ExplicitDestination^ destination
)

Parameters

positionIndex
Type: System..::..Int32
The zero based position index where to insert the bookmark.
text
Type: System..::..String
The bookmark text.
destination
Type: EvoPdf..::..ExplicitDestination
The bookmark destination.

Return Value

Type: Bookmark
The newly created PDF bookmark.

See Also