Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Tabulation addFooterParagraph: Difference between revisions

From Catglobe Wiki
Created page with "=== <span style="color:#DF8621">'''Examples'''</span> === <source lang="javascript"> //Footer TabulationParagraphStyle paragraphStyleFooter1 = new TabulationParagraphStyle();..."
 
No edit summary
Line 1: Line 1:
==== Tabulation_addFooterParagraph ====
Adds an paragraph to the footer
'''Syntax'''
Tabulation_addFooterParagraph(''TabulationParagraph'')
'''Arguments'''
*[[TabulationParagraph class|''TabulationParagraph'']]
=== <span style="color:#DF8621">'''Examples'''</span> ===
=== <span style="color:#DF8621">'''Examples'''</span> ===



Revision as of 11:36, 22 June 2016

Tabulation_addFooterParagraph

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.