Exemple #1
0
 public PdfRectangle(PdfInt point1, PdfInt point2, PdfInt point3, PdfInt point4)
 {
     this.point1 = point1;
     this.point2 = point2;
     this.point3 = point3;
     this.point4 = point4;
     Init();
 }
Exemple #2
0
 public PdfRectangle()
 {
     point1 = new PdfInt();
     point2 = new PdfInt();
     point3 = new PdfInt();
     point4 = new PdfInt();
     Init();
 }