Difference between revisions of "Tabulation setTableDiagramStyle"

From Catglobe Wiki
Jump to: navigation, search
Line 1: Line 1:
[[Category:Style_setting_functions]]
+
{{HelpFiles}}
{{HelpFiles}}
 
  
===Tabulation_setTableDiagramStyle===)
+
===Tabulation_setTableDiagramStyle===
  
Put the function description here
+
Put the function description here Example: Return value property of question.
Example: Return value property of question.
 
  
===Syntax===
+
=== Syntax ===
  
 
Tabulation_setTableDiagramStyle(styleType, tableDiagramStyle, argTableDiagramStyle);
 
Tabulation_setTableDiagramStyle(styleType, tableDiagramStyle, argTableDiagramStyle);
  
===Arguments===
+
=== Arguments ===
  
styleType: is the CELL type that will be affected by the call. It's the value of the Table diagram constants. Or we can also use the name of Table Diagram constants
+
styleType: is the CELL type that will be affected by the call. It's the value of the Table diagram constants. Or we can also use the name of Table Diagram constants tableDiagramStyle: is the kind of style. It's the value of the Table Diagram style constants. Or we can also use the name of Table Diagram style constants
tableDiagramStyle: is the kind of style. It's the value of the Table Diagram style constants. Or we can also use the name of Table Diagram style constants
 
  
 
argTableDiagramStyle: is argument for the given tableDiagramStyle
 
argTableDiagramStyle: is argument for the given tableDiagramStyle
 +
 
{| class="tableintopic" style="border-collapse: collapse;  border: 1px solid rgb(1, 1, 1)" border="1" cellpadding="2" width="958"
 
{| class="tableintopic" style="border-collapse: collapse;  border: 1px solid rgb(1, 1, 1)" border="1" cellpadding="2" width="958"
 
|- align="left" valign="top"
 
|- align="left" valign="top"
Line 66: Line 64:
 
|}
 
|}
  
===Return type===
+
=== Return type ===
  
 
Empty
 
Empty
  
===Examples===
+
=== Examples ===
 +
 
 
<source lang="javascript">
 
<source lang="javascript">
  Put your cgs codes and results here
+
Put your cgs codes and results here
</source>
+
</source> __NOTOC__
__NOTOC__
 

Revision as of 10:15, 7 December 2015


Tabulation_setTableDiagramStyle

Put the function description here Example: Return value property of question.

Syntax

Tabulation_setTableDiagramStyle(styleType, tableDiagramStyle, argTableDiagramStyle);

Arguments

styleType: is the CELL type that will be affected by the call. It's the value of the Table diagram constants. Or we can also use the name of Table Diagram constants tableDiagramStyle: is the kind of style. It's the value of the Table Diagram style constants. Or we can also use the name of Table Diagram style constants

argTableDiagramStyle: is argument for the given tableDiagramStyle

tableDiagramStyle

Type

Description

TABLE_DIAGRAM_STYLE_FILL
array
Is the array of function DiagramFillStyle_getDefault
TABLE_DIAGRAM_STYLE_DECIMAL
number
With min 0
TABLE_DIAGRAM_STYLE_FONT
array
Is the array of function DiagramFontStyle_getDefault
TABLE_DIAGRAM_STYLE_VALIGN
string
takes string values of these Center, Left, Right
TABLE_DIAGRAM_STYLE_HALIGN
string
takes string values of these Center, Left, Right
TABLE_DIAGRAM_STYLE_NUMBER_FORMATTER
string
takes a string.format string, default is "{0:"+decimalplaces+"}"
TABLE_DIAGRAM_STYLE_PERCENT_FORMATTER
string
takes a string.format string, default is "{0:"+decimalplaces+"}%"
TABLE_DIAGRAM_STYLE_SIGNIFICANCE_FORMATTER
string
takes a string.format string, default is "{0:[+];[-];,} {1}"
where 0 is int that is positive, negative or zero depending on significance and 1 is the Z value
TABLE_DIAGRAM_STYLE_BORDER_STYLE
object
takes a Border object

Return type

Empty

Examples

 Put your cgs codes and results here