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;
		}