Difference between revisions of "GetTotal"

From Catglobe Wiki
Jump to: navigation, search
(jrfconvert import)
 
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:HelpBooks]]
+
{{HelpFiles}}

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

Latest revision as of 12:51, 26 December 2011



getTotal

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

Syntax

getTotal()

Arguments

none

Return type

empty

Examples

bool b = getTotal();

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

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

//Result: Total row is enabled and can be shown for table diagrams.

Availability

Version 5.4