Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.3.23
|
Leadtools.Pdf Assembly > Leadtools.Pdf Namespace > PDFDocumentPage Class : WidthInches Property |
public double WidthInches {get;}
'Declaration
Public ReadOnly Property WidthInches As Double
'Usage
Dim instance As PDFDocumentPage Dim value As Double value = instance.WidthInches
public double getWidthInches()
This value is read-only. The WidthInches and HeightInches are properties are populated automatically when the PDFDocument is created by dividing the Width and Height values read from PDF file by 72.
This value is the width of crop box of this page stored in CropBox, For more information, refer to PDF Coordinate System.
PDF units are in 1/72 of an inch, so a page size (Width and Height) of 612 by 792 corresponds to 8.5 by 11 inches (612/72 by 792/72).
You can also use the WidthPixels and HeightPixels to get the size in pixels (depending on the current resolution set in the owner PDFDocument.Resolution.
The PDFDocumentPage object also contains the ConvertPoint and ConvertRect helper methods that can be used to convert a point or a rectangle to and from page/object to pixel/inch coordinates.
This property returns the width of the PDF crop box. For more information, refer to PDF Coordinate System.
For an example, refer to PDFDocumentPage