I followed the example of the hello world pdf migradoc example... and am not actually able to get a link I can click on and have it jump.
early on, I build table of contents with a bookmark that is not yet created by doing something like this:
Code:
Hyperlink hyperlink = paragraph.AddHyperlink("TableData"); // I've tried this explicitly passing in Bookmark type
hyperlink.AddText("Raw Data\t");
hyperlink.AddPageRefField("TableData");
and then when I am actually building out the report...
Code:
var para = matrixSection.AddParagraph();
para.AddBookmark("TableData");
It actually draws the title/page number correctly, but I just cant click on it.