Praeclarum.Graphics.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( int left, int top, int width, int height ) : System
left int
top int
width int
height int
return System
		public Rectangle (int left, int top, int width, int height)
		{
			X = left;
			Y = top;
			Width = width;
			Height = height;
		}