iTextSharp.text.Rectangle.Rectangle C# (CSharp) Метод

Rectangle() публичный Метод

Constructs a Rectangle-object.
public Rectangle ( float llx, float lly, float urx, float ury ) : System
llx float lower left x
lly float lower left y
urx float upper right x
ury float upper right y
Результат System
        public Rectangle(float llx, float lly, float urx, float ury)
        {
            this.llx = llx;
            this.lly = lly;
            this.urx = urx;
            this.ury = ury;
        }

Same methods

Rectangle::Rectangle ( Rectangle rect ) : System
Rectangle::Rectangle ( float urx, float ury ) : System
Rectangle::Rectangle ( float llx, float lly, float urx, float ury, int rotation ) : System
Rectangle::Rectangle ( float urx, float ury, int rotation ) : System