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