Skip to main content

TdxPDFHyperlinkList Class

A collection of hyperlinks on a PDF document page.

Declaration

TdxPDFHyperlinkList = class(
    TdxPDFRecognizedObjectList<TdxPDFHyperlink>
)

Remarks

This class instantiates its ancestor with the TdxPDFHyperlink class without introducing any new members. Since the TdxPDFHyperlinkList class inherits all members that implement the collection item access and management functionality, there is no need to edit a hyperlink list pre-populated from a page of the PDF document loaded in read-only mode. You can use the following TdxPDFHyperlinkList class’ members to:

  • Identify the number of hyperlinks within the collection (Count);

  • Access a hyperlink by its index in the collection (Items);

  • Access the first or last hyperlink within the collection (First and Last).

The Hyperlinks field declared in the TdxPDFPageInfo record references a TdxPDFHyperlinkList object.

See Also