Skip to main content
A newer version of this page is available. .

TdxPDFImageList Class

A collection of images on a PDF document page.

Declaration

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