Tabulation addFooterParagraph
Revision as of 12:36, 22 June 2016 by MortenHattingVoltelen (talk | contribs)
Adds an paragraph to the footer
Syntax
Tabulation_addFooterParagraph(TabulationParagraph)
Arguments
Examples
//Footer
TabulationParagraphStyle paragraphStyleFooter1 = new TabulationParagraphStyle();
//Inline
Tabulation_addFooterParagraph(new TabulationParagraph(paragraphStyleFooter1, "Voxmeter for customer", textStyleHeaderFooter));
paragraphStyleFooter1.Alignment = "right";
Tabulation_addFooterParagraph(new TabulationParagraph(paragraphStyleFooter1, "Page $p of $P", textStyleHeaderFooter));
//Constants that are changed: $p to current page number and $P to total number of pages.