Inserts a new outline at the specified index.

Namespace: Spire.Pdf.Bookmarks
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfBookmark Insert(
	int index,
	string title
)
Public Function Insert ( 
	index As Integer,
	title As String
) As PdfBookmark
public:
PdfBookmark^ Insert(
	int index, 
	String^ title
)
member Insert : 
        index : int * 
        title : string -> PdfBookmark 

Parameters

index
Int32
The index.
title
String
The title of the new outline.

Return Value

PdfBookmark
The new outline.

See Also