Difference between revisions of "GetMedian"

From Catglobe Wiki
Jump to: navigation, search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
[[Category:Median functions]]
+
{{HelpFiles}}

 
  
=====getMedian=====
+
===== getMedian =====
  
Returns the current state of the median row which can be shown for table diagrams.
+
Returns the current state of the median row which can be shown for table diagrams.  
  
'''Syntax'''
+
'''Syntax'''  
  
getMedian()
+
getMedian()  
  
'''Arguments'''
+
'''Arguments'''  
  
none
+
none  
  
'''Return type'''
+
'''Return type'''  
  
boolean
+
boolean  
  
'''Examples'''
+
'''Examples'''  
  
 
''bool b = getMedian();''
 
''bool b = getMedian();''
  
'''Availability'''
+
''if (b) print("Median row is enabled and can be shown for table diagrams.");''
  
Version 5.4
+
''else print("Median row is disabled and cannot be shown for table diagrams.");''
__NOTOC__
+
 
<!-- imported from file: 4211.htm-->
+
''//Result: Median row is disabled and cannot be shown for table diagrams. ''
 +
 
 +
'''Availability'''
 +
 
 +
Version 5.4 __NOTOC__ <!-- imported from file: 4211.htm-->  
 +
 
 +
[[Category:Median_functions]]

Latest revision as of 11:56, 26 December 2011



getMedian

Returns the current state of the median row which can be shown for table diagrams.

Syntax

getMedian()

Arguments

none

Return type

boolean

Examples

bool b = getMedian();

if (b) print("Median row is enabled and can be shown for table diagrams.");

else print("Median row is disabled and cannot be shown for table diagrams.");

//Result: Median row is disabled and cannot be shown for table diagrams.

Availability

Version 5.4