Vote TAdvPDFLib: the ability to create internal links into the PDF document

With internal links I mean clicking on a word in the PDF document and after clicking the PDF the current active position moves to that particular point in the PDF. As an example: at the beginning of the PDF document there is a list of all the chapters and by clicking on chapter 18 the the active page jumps to chapter 18 on page 283. Just an example.

The TAdvPDFLib does do the actual jumping of course (that is done by the PDF Viewer) but it does need to create the link. Again, the chapter example is just an example to illustrate what I mean. There are many uses for links.

Though internal links is what I need, for someone else it might be external links. Maybe that could be added to. But first the internal link please :smiley:

Thanks.
Fons

This is already possible with the following code

  AdvPDFLib1.BeginDocument('test.pdf');
  try
    AdvPDFLib1.NewPage;
    AdvPDFLib1.Graphics.AddGoTo('MyTest', '2', RectF(20, 20, 300, 300));
    AdvPDFLib1.NewPage;
  finally
    AdvPDFLib1.EndDocument(True);
  end;

This will jump to page 2