Difference between revisions of "Tabulation addText"
(Created page with "= Tabulation_addText = Add text into the Tabulation result. Please take a look at the below example for more detail. == Syntax == Tabulation_addText(text) == Parameters == *...") |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | = Tabulation_addText = | + | = Tabulation_addText<br/> = |
+ | |||
+ | <span style="color:#ff0000">OBSOLETE SINCE V. 6.0</span> | ||
Add text into the Tabulation result. Please take a look at the below example for more detail. | Add text into the Tabulation result. Please take a look at the below example for more detail. | ||
+ | == Syntax == | ||
− | |||
Tabulation_addText(text) | Tabulation_addText(text) | ||
== Parameters == | == Parameters == | ||
+ | |||
*text: is the text you want to add to the your tabulation result. It is a string type | *text: is the text you want to add to the your tabulation result. It is a string type | ||
== Examples == | == Examples == | ||
+ | <source lang="javascript"> | ||
+ | DCS_use(37244952); | ||
+ | Tabulation_addText("Table: Age"); | ||
+ | createFrequenceDiagram("S_Age"); | ||
+ | </source> | ||
− | + | __NOTOC__ |
Latest revision as of 08:53, 24 June 2016
Tabulation_addText
OBSOLETE SINCE V. 6.0
Add text into the Tabulation result. Please take a look at the below example for more detail.
Syntax
Tabulation_addText(text)
Parameters
- text: is the text you want to add to the your tabulation result. It is a string type
Examples
DCS_use(37244952);
Tabulation_addText("Table: Age");
createFrequenceDiagram("S_Age");