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

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

Constructs a new Document-object.
public Document ( Rectangle pageSize, float marginLeft, float marginRight, float marginTop, float marginBottom ) : System
pageSize Rectangle the pageSize
marginLeft float the margin on the left
marginRight float the margin on the right
marginTop float the margin on the top
marginBottom float the margin on the bottom
Результат System
        public Document(Rectangle pageSize, float marginLeft, float marginRight, float marginTop, float marginBottom)
        {
            this.pageSize = pageSize;
            this.marginLeft = marginLeft;
            this.marginRight = marginRight;
            this.marginTop = marginTop;
            this.marginBottom = marginBottom;
        }

Same methods

Document::Document ( ) : System
Document::Document ( Rectangle pageSize ) : System