ImageEn, unit iexPdfiumCore |
|
TPdfFormField.Bounds
Declaration
property Bounds: TDRect;
Description
Returns the area of the page the form field occupies.
Values returns will be in terms of PDF points, and bottom-up (Enable InvertOrientation to reverse the direction).
// Display Bounds
r := ImageEnView1.PdfViewer.FormFields[0].Bounds;
lblBounds.Caption := Format( 'Bounds: %d,%d,%d,%d', [ r.Left, r.Top, r.Right, r.Bottom ]);