MegaMan.Common.Geometry.RectangleF.FromLTRB C# (CSharp) 메소드

FromLTRB() 공개 정적인 메소드

public static FromLTRB ( float left, float top, float right, float bottom ) : RectangleF
left float
top float
right float
bottom float
리턴 RectangleF
        public static RectangleF FromLTRB(float left, float top, float right, float bottom)
        {
            return new RectangleF(left, top, right - left, bottom - top);
        }