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 addPagebreak: Difference between revisions

From Catglobe Wiki
Created page with "Category:Using_CGScript_with_the_Tabulation_Module {{HelpFiles}} ===Tabulation_addPagebreak=== Insert a page break ===Syntax=== Tabulation_addPagebreak(); ===Re..."
 
No edit summary
Line 1: Line 1:
[[Category:Using_CGScript_with_the_Tabulation_Module]]
{{HelpFiles}}
{{HelpFiles}}
 
===Tabulation_addPagebreak===
=== Tabulation_addPagebreak ===


Insert a page break
Insert a page break


===Syntax===
=== Syntax ===


Tabulation_addPagebreak();
Tabulation_addPagebreak();


=== Return type ===


===Return type===
Empty.


Empty.
=== Examples ===


===Examples===
<source lang="javascript">
<source lang="javascript">
Tabulation_addParagraph(new TabulationParagraph(paragraphStyle,"Page 1",textStyle));
Tabulation_addParagraph(new TabulationParagraph(paragraphStyle,"Page 1",textStyle));
Line 21: Line 21:
Tabulation_addParagraph(new TabulationParagraph(paragraphStyle,"Page 2",textStyle));
Tabulation_addParagraph(new TabulationParagraph(paragraphStyle,"Page 2",textStyle));
createCrossDiagram({"Q0"}, {"PB_Region"});
createCrossDiagram({"Q0"}, {"PB_Region"});
</source>
</source> __NOTOC__
__NOTOC__

Revision as of 09:18, 2 December 2016


Tabulation_addPagebreak

Insert a page break

Syntax

Tabulation_addPagebreak();

Return type

Empty.

Examples

Tabulation_addParagraph(new TabulationParagraph(paragraphStyle,"Page 1",textStyle));
createCrossDiagram({"Q0"}, {"PB_Gender"});
Tabulation_addPagebreak();
Tabulation_addParagraph(new TabulationParagraph(paragraphStyle,"Page 2",textStyle));
createCrossDiagram({"Q0"}, {"PB_Region"});