Treefrog.Framework.Imaging.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( Point location, Size size ) : System
location Point
size Size
return System
        public Rectangle(Point location, Size size)
            : this(location.X, location.Y, size.Width, size.Height)
        {
        }

Same methods

Rectangle::Rectangle ( Point location, int width, int height ) : System
Rectangle::Rectangle ( int x, int y, int width, int height ) : System