Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxPDFHyperlinkList Class

A collection of hyperlinks on a PDF document page.

#Declaration

Delphi
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