Extracts the information of all links in the pdf document.
Return Value
ArrayList
Example
[C#]
PdfContentEditor editor = new PdfContentEditor();
string KitTestPath = @"F:\pdfkit\";
string KitTestOut = @"F:\pdfkit\";
editor.BindPdf(KitTestPath + "example1.pdf");
ArrayList linkArray=editor.ExtractLink();
LinkInfo []links=(LinkInfo[])linkArray.ToArray(typeof(LinkInfo));
for(int k=0;k<linkArray.Count;k++)
{
Console.Write("source page:"+links[k].SourcePageNum+"\n");
Console.Write("des page:"+links[k].DesPageNum+"\n");
Console.Write("des view type:"+links[k].DestinationViewType+"\n");
Console.Write("action type:"+links[k].ActionType+"\n");
Console.Write("rectangle: