Modifys bookmark title according to the specified bookmark title .
Parameters
- sTitle
- Source bookmark title.
- dTitle
- Modified bookmark title.
Example
[C#]
PdfContentEditor editor = new PdfContentEditor();
string KitTestPath = @"F:\pdfkit\";
string KitTestOut = @"F:\pdfkit\";
editor.BindPdf(KitTestPath + "example1.pdf");
editor.ModifyBookMarks(sTitle,dTitle);
editor.Save(KitTestOut+"example1_Bookmarks.pdf");
[Visual Basic]
Dim editor As PdfContentEditor = New PdfContentEditor()
Dim KitTestPath As String ="F:\pdfkit\"
Dim KitTestOut