ImageEn, unit iexPdfiumCore

TPdfAnnotation.Bounds

TPdfAnnotation.Bounds


Declaration

property Bounds: TDRect;


Description

Returns the area of the page the annotation occupies.
Values returns will be in terms of PDF points, and bottom-up (Enable InvertOrientation to reverse the direction).


Example

// Display Bounds
r := ImageEnView1.PdfViewer.Annotations[0].Bounds;
lblBounds.Caption := Format( 'Bounds: %d,%d,%d,%d', [ r.Left, r.Top, r.Right, r.Bottom ]);