 | PdfBookmarkCollectionsInsertAt(Int32, String, PdfDestination) Method |
Inserts a bookmark with the specified destination into the collection at the specified index.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic PdfBookmark InsertAt(
int Index,
string Title,
PdfDestination destination
)
Public Function InsertAt (
Index As Integer,
Title As String,
destination As PdfDestination
) As PdfBookmark
public:
PdfBookmark^ InsertAt(
int Index,
String^ Title,
PdfDestination^ destination
)
member InsertAt :
Index : int *
Title : string *
destination : PdfDestination -> PdfBookmark
public PdfBookmark InsertAt(
int Index,
String Title,
PdfDestination destination
)
function InsertAt(Index, Title, destination);
Parameters
- Index Int32
- The zero-based index at which bookmark should be inserted.
- Title String
- The title of the bookmark.
- destination PdfDestination
- The destination to be performed by the bookmark.
Return Value
PdfBookmarkThe bookmark that has been inserted.
See Also