PdfRectangle Constructor

Creates a rectangle given the top left coordinates and the size. The values are expressed in points, with 1 point = 1/72 inch

Definition

Namespace: EvoPdf.Chromium
Assembly: EvoPdf.Chromium (in EvoPdf.Chromium.dll) Version: 11.4.0
C#
public PdfRectangle(
	int x,
	int y,
	int width,
	int height
)

Parameters

x  Int32
The top left coorner X coordinate of the rectangle in points
y  Int32
The top left coorner Y coordinate of the rectangle in points
width  Int32
The rectangle width in points
height  Int32
The rectangle height in points

See Also