Axiom.Core.RectangleF.RectangleF C# (CSharp) 메소드

RectangleF() 공개 메소드

public RectangleF ( RectangleF copy ) : System
copy RectangleF
리턴 System
		public RectangleF( RectangleF copy )
		{
			_left = copy._left;
			_top = copy._top;
			_right = copy._right;
			_bottom = copy._bottom;
		}

Same methods

RectangleF::RectangleF ( float left, float top, float right, float bottom ) : System