Difference between revisions of "Tabulation setHasPageNumber"

From Catglobe Wiki
Jump to: navigation, search
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Diagram/report generating CGScript functions]]
+
{{HelpFiles}}
{{HelpFiles}}
 
  
====Tabulation_setHasPageNumber====
+
==== Tabulation_setHasPageNumber<br/> ====
 +
 
 +
<span style="color:#ff0000">OBSOLETE SINCE V. 6.0</span>
  
 
Set page number to PDF file
 
Set page number to PDF file
Line 20: Line 21:
 
'''Example'''
 
'''Example'''
  
<nowiki>array groups = {{1, "Read"}, {2, "Write"}};</nowiki>
+
''<nowiki>array groups = {{1, "Read"}, {2, "Write"}};</nowiki>''
  
number a = createFrequenceDiagram("Single");
+
''number a = createFrequenceDiagram("Single");''
  
number reportUniqueId = Tabulation_saveAsReport("bug bug", 15707010, groups, true);
+
''number reportUniqueId = Tabulation_saveAsReport("bug bug", 15707010, groups, true);''
  
Tabulation_setPDFPrintingDirection(Diagram_PdfLayoutDirection_Landscape);
+
''Tabulation_setPDFPrintingDirection(Diagram_PdfLayoutDirection_Landscape);''
  
Tabulation_setFooterText("Loser");
+
''Tabulation_setFooterText("Loser");''
  
Tabulation_setHasPageNumber(true);
+
''Tabulation_setHasPageNumber(true);''
  
Tabulation_setShowResultAsPdf(true);
+
''Tabulation_setShowResultAsPdf(true);''
 +
 
 +
''//Result: PDF file will be shown page number.''
  
 
'''Availability'''
 
'''Availability'''
  
 
Version 5.7
 
Version 5.7
 +
 +
 +
 +
<span style="color:#ff0000">OBSOLETE SINCE V. 6.0</span>
 +
 
__NOTOC__
 
__NOTOC__
 
<!-- imported from file: 7535.htm-->
 
<!-- imported from file: 7535.htm-->

Latest revision as of 11:56, 24 June 2016


Tabulation_setHasPageNumber

OBSOLETE SINCE V. 6.0

Set page number to PDF file

Syntax

Tabulation_setHasPageNumber(boolValue)

Arguments

boolValue: is bool. If boolValue = true, page number is set, whereas page number is not set.

Return value

empty

Example

array groups = {{1, "Read"}, {2, "Write"}};

number a = createFrequenceDiagram("Single");

number reportUniqueId = Tabulation_saveAsReport("bug bug", 15707010, groups, true);

Tabulation_setPDFPrintingDirection(Diagram_PdfLayoutDirection_Landscape);

Tabulation_setFooterText("Loser");

Tabulation_setHasPageNumber(true);

Tabulation_setShowResultAsPdf(true);

//Result: PDF file will be shown page number.

Availability

Version 5.7


OBSOLETE SINCE V. 6.0