示例#1
0
 public override void AddRectangle(double x, double y, double width, double height)
 {
     x      *= MmToPt;
     y      *= MmToPt;
     width  *= MmToPt;
     height *= MmToPt;
     _contentStream.AddRect((float)x, (float)y, (float)width, (float)height);
 }