PdfRectangle Constructor (PdfPoint, PdfSize)

Initializes a new instance of the PdfRectangle struct with the specified location and size.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfRectangle(
	PdfPoint location,
	PdfSize size
)
VB
Public Sub New ( 
	location As PdfPoint,
	size As PdfSize
)

Parameters

location
Type: BitMiracle.Docotic.Pdf.PdfPoint
A PdfPoint that represents the upper-left corner of the rectangular region.
size
Type: BitMiracle.Docotic.Pdf.PdfSize
A PdfSize that represents the width and height of the rectangular region.

See Also