Axiom.Core.Rectangle.Rectangle C# (CSharp) Method

Rectangle() public method

public Rectangle ( Rectangle copy ) : System
copy Rectangle
return System
		public Rectangle( Rectangle copy )
		{
			_left = copy._left;
			_top = copy._top;
			_right = copy._right;
			_bottom = copy._bottom;
		}

Same methods

Rectangle::Rectangle ( long left, long top, long right, long bottom ) : System