Difference between revisions of "Tabulation setSortOrderHorizontal"

From Catglobe Wiki
Jump to: navigation, search
Line 1: Line 1:
==== Tabulation_setSortOrderHorizontal ====
+
{{HelpFiles}}
 +
__NOTOC__
 +
[[Category:Sorting_functions]]
  
Sort data horizontally
+
== Tabulation_setSortOrderHorizontal  ==
  
'''Syntax'''
+
Sort the tabulation table in horizontal
  
Tabulation_setSortOrderHorizontal(constant)
 
  
'''Arguments'''
+
===Syntax===
  
*''Tabulation_SortOrder_None'': is a ''constant ''.
+
Tabulation_setSortOrderHorizontal(sortOrder)
*''Tabulation_SortOrder_LowToHigh'': is a ''constant ''.
 
*''Tabulation_SortOrder_HighToLow'': is a ''constant ''.
 
*''Tabulation_SortOrder_AtoZ'': is a ''constant ''.
 
*''Tabulation_SortOrder_ZtoA'': is a ''constant ''.
 
  
'''Return type'''
+
===Arguments===
  
N/A
+
''sortOrder'': Is a numeric (non-decimal) expression. The constants for this parameter:
  
'''Examples'''
+
*0: Tabulation_SortOrder_None
 +
*1: Tabulation_SortOrder_HighToLow
 +
*2: Tabulation_SortOrder_LowToHigh
 +
*3: Tabulation_SortOrder_AtoZ
 +
*4: Tabulation_SortOrder_ZtoA
  
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_LowToHigh);<br/>createCrossDiagram(rowAxis,colAxis);
+
===Return type===
  
'''Availability'''
+
empty
  
Version 6.0
+
===Examples===
 +
 
 +
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_None);
 +
Result:
 +
 
 +
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_HighToLow);
 +
Result:
 +
 
 +
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_LowToHigh);
 +
Result:
 +
 
 +
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_AtoZ);
 +
Result:
 +
 
 +
Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_ZtoA);
 +
Result:

Revision as of 05:07, 21 October 2015



Tabulation_setSortOrderHorizontal

Sort the tabulation table in horizontal


Syntax

Tabulation_setSortOrderHorizontal(sortOrder)

Arguments

sortOrder: Is a numeric (non-decimal) expression. The constants for this parameter:

  • 0: Tabulation_SortOrder_None
  • 1: Tabulation_SortOrder_HighToLow
  • 2: Tabulation_SortOrder_LowToHigh
  • 3: Tabulation_SortOrder_AtoZ
  • 4: Tabulation_SortOrder_ZtoA

Return type

empty

Examples

Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_None); Result:

Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_HighToLow); Result:

Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_LowToHigh); Result:

Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_AtoZ); Result:

Tabulation_setSortOrderHorizontal(Tabulation_SortOrder_ZtoA); Result: