Initializes a new instance of the
PdfPageSize class with given width and height (in points).
Namespace:
RadPdf.Data.Document.Pages
Assembly:
RadPdf (in RadPdf.dll) Version: 3.48.0.0 (3.48.0.0)
Syntax public PdfPageSize(
double width,
double height
)
Public Sub New (
width As Double,
height As Double
)
Parameters
- width
- Type: SystemDouble
The page width in points. - height
- Type: SystemDouble
The page height in points.
Remarks Examples
In this example, a new page size, 4in by 4in, is created.
PdfPageSize size = new PdfPageSize(4.0 * PdfPageSize.PointsPerInch, 4.0 * PdfPageSize.PointsPerInch);
See Also