 | PdfBookmarkCollectionsInsertAt(Int32, String, PdfPage) Method |
Inserts a bookmark 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,
PdfPage Page
)
Public Function InsertAt (
Index As Integer,
Title As String,
Page As PdfPage
) As PdfBookmark
public:
PdfBookmark^ InsertAt(
int Index,
String^ Title,
PdfPage^ Page
)
member InsertAt :
Index : int *
Title : string *
Page : PdfPage -> PdfBookmark
public PdfBookmark InsertAt(
int Index,
String Title,
PdfPage Page
)
function InsertAt(Index, Title, Page);
Parameters
- Index Int32
- The zero-based index at which bookmark should be inserted.
- Title String
- The title of the bookmark.
- Page PdfPage
- The page to which the transition should be made when interacting with this bookmark.
Return Value
PdfBookmarkThe bookmark that has been inserted.
See Also