iTextSharp.text.HeaderFooter.HeaderFooter C# (CSharp) Method

HeaderFooter() public method

Constructs a HeaderFooter-object.
public HeaderFooter ( Phrase before, Phrase after ) : System
before Phrase the Phrase before the pagenumber
after Phrase the Phrase after the pagenumber
return System
        public HeaderFooter(Phrase before, Phrase after) : base(0, 0, 0, 0) {
            this.Border = TOP_BORDER + BOTTOM_BORDER;
            this.BorderWidth = 1;
        
            numbered = true;
            this.before = before;
            this.after = after;
        }
    

Same methods

HeaderFooter::HeaderFooter ( Phrase before, bool numbered ) : System
HeaderFooter::HeaderFooter ( Properties attributes ) : System