Tabulation getEnableOddEvenRowHeader: Difference between revisions
From Catglobe Wiki
More actions
jrfconvert import  |
No edit summary  |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
{{HelpFiles}} | |||
 | |||
=====Tabulation_getEnableOddEvenRowHeader===== | ===== Tabulation_getEnableOddEvenRowHeader ===== | ||
Returns the current state of the odd even row header style inheritance setting for tables. Â | Returns the current state of the odd even row header style inheritance setting for tables. Â | ||
'''Syntax''' | '''Syntax''' Â | ||
Tabulation_getEnableOddEvenRowHeader() | Tabulation_getEnableOddEvenRowHeader() Â | ||
'''Arguments''' | '''Arguments''' Â | ||
none | none  | ||
'''Return type''' | '''Return type''' Â | ||
boolean | boolean  | ||
'''Examples''' | '''Examples''' Â | ||
''bool b = Tabulation_getEnableOddEvenRowHeader();'' | ''bool b = Tabulation_getEnableOddEvenRowHeader();'' Â | ||
'' | ''if (b) print("Headers of Odd and Even row apply style of Odd and Even rows.");'' Â | ||
Version 5.8.1 | ''else print("Headers of Odd and Even row do not apply style of Odd and Even rows.");'' | ||
__NOTOC__ | Â | ||
<!-- imported from file: 8139.htm--> | ''//Result: Headers of Odd and Even row do not apply style of Odd and Even rows.'' | ||
 | |||
''[[Image:SetEnableOddEvenRowHeader_False.jpg]]'' | |||
 | |||
'''Availability''' | |||
 | |||
Version 5.8.1 __NOTOC__ <!-- imported from file: 8139.htm--> Â | |||
 | |||
[[Category:Style_setting_functions]] | |||
Latest revision as of 11:01, 30 December 2011

Tabulation_getEnableOddEvenRowHeader
Returns the current state of the odd even row header style inheritance setting for tables.
Syntax
Tabulation_getEnableOddEvenRowHeader()
Arguments
none
Return type
boolean
Examples
bool b = Tabulation_getEnableOddEvenRowHeader();
if (b) print("Headers of Odd and Even row apply style of Odd and Even rows.");
else print("Headers of Odd and Even row do not apply style of Odd and Even rows.");
//Result: Headers of Odd and Even row do not apply style of Odd and Even rows.
Availability
Version 5.8.1
