Praeclarum.Graphics.Rectangle.Rectangle C# (CSharp) Метод

Rectangle() публичный Метод

public Rectangle ( int left, int top, int width, int height ) : System
left int
top int
width int
height int
Результат System
		public Rectangle (int left, int top, int width, int height)
		{
			X = left;
			Y = top;
			Width = width;
			Height = height;
		}