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

From Catglobe Wiki
No edit summary
Cg van (talk | contribs)
No edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
*Tabulation_setTableLayout(TableChartLayout_Classic)<br>
{{HelpFiles}}


[[Image:Tabulation setTableLayout(TableChartLayout Classic).png]]<br>
===== Tabulation_setTableLayout  =====


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


*Tabulation_setTableLayout(TableChartLayout_LeftTitleClassic)
'''Syntax'''


[[Image:Tabulation setTableLayout(TableChartLayout LeftTitleClassic).png]]<br>
Tabulation_setTableLayout(TableChartLayoutType)  


<br>
'''Arguments'''


*Tabulation_setTableLayout(TableChartLayout_Ifka)
''TableChartLayoutType'': enumeration for the style you want your tables to have:


[[Image:Tabulation setTableLayout(TableChartLayout Ifka).png]]
TableChartLayout_Classic = 1 (blue non column width conformed)  


<br>
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: ''
 
[[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 10: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:


Tabulation_setTableLayout(TableChartLayout_LeftTitleClassic);

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

//Result:

Tabulation_setTableLayout(TableChartLayout_Ifka);

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

//Result:


Availability

Version 5.8.1