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