Example #1
0
 public RectangleF(PointF location, SizeF size)
 {
     this.left = location.X;
     this.top = location.Y;
     this.width = size.Width;
     this.height = size.Height;
 }
Example #2
0
 public void Inflate(SizeF size)
 {
     Inflate(size.Width, size.Height);
 }