コード例 #1
0
ファイル: PointRect.cs プロジェクト: jonc/carto
 public RectangleF(PointF location, SizeF size)
 {
     this.left = location.X;
     this.top = location.Y;
     this.width = size.Width;
     this.height = size.Height;
 }
コード例 #2
0
ファイル: PointRect.cs プロジェクト: jonc/carto
 public void Inflate(SizeF size)
 {
     Inflate(size.Width, size.Height);
 }