PDFium Component Docs

Image property

Component: TPdfView  ·  Unit: PDFium
TPdfView wrapper that forwards to TPdf.Image

Syntax

property Image[Index: Integer]: TPdfImage;

Description

Mirrors TPdf.Image. The TPdfView component forwards the call to its underlying Pdf instance and refreshes the view when the call changes the document

All semantic notes from TPdf.Image apply here too; the only difference is that you reach the operation through the visual control rather than the model object

When TPdfView is linked to an external TPdf (assigning PdfView1.Pdf := Pdf1), reading this property returns the same data as Pdf1.Image; when TPdfView owns its internal TPdf, this property is the only public accessor

Remarks

Example

if PdfView1.Active then
  Memo1.Lines.Add('Image = ' + VarToStr(PdfView1.Image));

See Also

Image, Pdf