System.util.RectangleJ.RectangleJ C# (CSharp) Method

RectangleJ() public method

public RectangleJ ( iTextSharp rect )
rect iTextSharp
        public RectangleJ(iTextSharp.text.Rectangle rect) {
            rect.Normalize();
            x = rect.Left;
            y = rect.Bottom;
            width = rect.Width;
            height = rect.Height;
        }

Same methods

RectangleJ::RectangleJ ( float x, float y, float width, float height )