property Image[Index: Integer]: TPdfImage;
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
UpdatePage on the view; setting them through the underlying TPdf does not, so remember to call PdfView1.UpdatePage manually in that casePdfView1.Active is False.
if PdfView1.Active then
Memo1.Lines.Add('Image = ' + VarToStr(PdfView1.Image));