Difference between revisions of "Tabulation setTableLayout"

From Catglobe Wiki
Jump to: navigation, search
 
Line 1: Line 1:
[[Category:Style setting functions]]
+
{{HelpFiles}}  
{{HelpFiles}}
 
  
=====Tabulation_setTableLayout=====
+
===== Tabulation_setTableLayout =====
  
Sets the general style of a table chart with some prefixed layout styles overriding any style sheet settings.
+
Sets the general style of a table chart with some prefixed layout styles overriding any style sheet settings.  
  
'''Syntax'''
+
'''Syntax'''  
  
Tabulation_setTableLayout(TableChartLayoutType)
+
Tabulation_setTableLayout(TableChartLayoutType)  
  
'''Arguments'''
+
'''Arguments'''  
  
''TableChartLayoutType'': enumeration for the style you want your tables to have:
+
''TableChartLayoutType'': enumeration for the style you want your tables to have:  
  
TableChartLayout_Classic = 1 (blue non column width conformed)
+
TableChartLayout_Classic = 1 (blue non column width conformed)  
  
TableChartLayout_LeftTitleClassic = 2 (blue title column width standardized)
+
TableChartLayout_LeftTitleClassic = 2 (blue title column width standardized)  
  
TableChartLayout_Ifka = 3 (white simple width standardized)
+
TableChartLayout_Ifka = 3 (white simple width standardized)  
  
'''Return type'''
+
'''Return type'''  
  
Empty
+
Empty  
  
'''Example'''
+
'''Example'''  
  
Tabulation_setTableLayout(TableChartLayout_LeftTitleClassic);
+
''Tabulation_setTableLayout(TableChartLayout_Classic); ''
  
'''Availability'''
+
''number a = createCrossDiagram({"Civil_status"},{"Sex"});''  
  
Version 5.8.1
+
''//Result: ''
__NOTOC__
+
 
<!-- imported from file: 8113.htm-->
+
[[Image:TableChartLayout Classic.jpg]]<br>
 +
 
 +
''Tabulation_setTableLayout(TableChartLayout_LeftTitleClassic); ''
 +
 
 +
''a = createCrossDiagram({"Civil_status"},{"Sex"});''
 +
 
 +
''//Result: ''
 +
 
 +
[[Image:TableChartLayout LeftTitleClassic.jpg]]
 +
 
 +
''Tabulation_setTableLayout(TableChartLayout_Ifka); ''
 +
 
 +
''a = createCrossDiagram({"Civil_status"},{"Sex"});''
 +
 
 +
''//Result: ''
 +
 
 +
[[Image:TableChartLayout Ifka.jpg]]<br>
 +
 
 +
'''Availability'''
 +
 
 +
Version 5.8.1 __NOTOC__ <!-- imported from file: 8113.htm-->  
 +
 
 +
[[Category:Style_setting_functions]]

Latest revision as of 11:47, 29 December 2011



Tabulation_setTableLayout

Sets the general style of a table chart with some prefixed layout styles overriding any style sheet settings.

Syntax

Tabulation_setTableLayout(TableChartLayoutType)

Arguments

TableChartLayoutType: enumeration for the style you want your tables to have:

TableChartLayout_Classic = 1 (blue non column width conformed)

TableChartLayout_LeftTitleClassic = 2 (blue title column width standardized)

TableChartLayout_Ifka = 3 (white simple width standardized)

Return type

Empty

Example

Tabulation_setTableLayout(TableChartLayout_Classic);

number a = createCrossDiagram({"Civil_status"},{"Sex"});

//Result:

TableChartLayout Classic.jpg

Tabulation_setTableLayout(TableChartLayout_LeftTitleClassic);

a = createCrossDiagram({"Civil_status"},{"Sex"});

//Result:

TableChartLayout LeftTitleClassic.jpg

Tabulation_setTableLayout(TableChartLayout_Ifka);

a = createCrossDiagram({"Civil_status"},{"Sex"});

//Result:

TableChartLayout Ifka.jpg

Availability

Version 5.8.1