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

TdxPDFImageList Class

A collection of images on a PDF document page.

#Declaration

Delphi
TdxPDFImageList = class(
    TdxPDFRecognizedObjectList<TdxPDFImage>
)

#Remarks

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

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

  • Access an image by its index in the collection (Items);

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

The Images field declared in the TdxPDFPageInfo record references a TdxPDFImageList object.

See Also