وثائق PDFiumVCL

PageWidth property

يحافظ إدخال API هذا على المعرّفات والتواقيع وكتل الكود ومصطلحات PDF بصيغتها الأصلية.
Component: TPdf  ·  Unit: PDFium
Page-level property — width of the current page in points (1 pt = 1/72 inch).

Syntax

property PageWidth: Double;

Description

Returns the width of the current page in points (1 pt = 1/72 inch). The value is sourced from the page dictionary in the PDF, after any inherited /MediaBox / /CropBox / /Rotate from parent nodes are resolved.

Read-only unless the property name implies a writer (such as Page or PageRotation); assigning to read-only properties has no effect.

Coordinates and dimensions are reported in PDF user-space points. To convert to pixels for a target DPI, use PointsToPixels(Value, DPI) or the equivalent helpers.

Remarks

Example

if Pdf1.Active then
  Memo1.Lines.Add('PageWidth = ' + VarToStr(Pdf1.PageWidth));

See Also

PageHeight, PageBounds, PageRotation