|
|
(5 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
− | == <span class="mw-headline" id="QAS_new">Tabulation_getFilterDescriptionVisibility</span> ==
| + | [[Category:Filter_functions]] |
| + | __NOTOC__ |
| | | |
− | get value of Show/hide of Filter
| + | Check whether the filter info row is shown or not |
| | | |
− | === <span class="editsection" style="-webkit-user-select: none; float: right; font-size: 12.8409595489502px; font-weight: normal; margin-left: 5px;">[[http://wiki.catglobe.com/index.php?title=QAS_new&action=edit§ion=2 edit]]</span><span class="mw-headline" id="Syntax">Syntax</span> === | + | ===Syntax=== |
| | | |
| Tabulation_getFilterDescriptionVisibility(); | | Tabulation_getFilterDescriptionVisibility(); |
| | | |
− | === <span class="editsection" style="-webkit-user-select: none; float: right; font-size: 12.8409595489502px; font-weight: normal; margin-left: 5px;">[[http://wiki.catglobe.com/index.php?title=QAS_new&action=edit§ion=3 edit]]</span><span class="mw-headline" id="Arguments">Arguments</span> === | + | ===Return value=== |
| | | |
− | <span class="mw-headline">none</span>
| + | boolean |
− | | |
− | === <span class="editsection" style="-webkit-user-select: none; float: right; font-size: 12.8409595489502px; font-weight: normal; margin-left: 5px;">[[http://wiki.catglobe.com/index.php?title=QAS_new&action=edit§ion=4 edit]]</span><span class="mw-headline" id="Return_value">Return value</span> ===
| |
− | | |
− | Result is bool value.
| |
− | | |
− | '''Examples:'''
| |
− | <div>number ReportStyleSheet_RID = 636143;</div><div>// Convert the Report Style Sheet RID to Report Style Sheet ID</div><div>string ReportStyleSheet_GUID = getResourceGuid(ReportStyleSheet_RID);</div><div>number ReportStyleSheet_ID = getResourceIdFromGuid(ReportStyleSheet_GUID);</div><div>// Use the specified Report Style Sheet</div><div>setReportStyleSheetId(ReportStyleSheet_ID);</div><div><br/></div><div>// add a filter</div><div>addFilter("D_Week == [201401-201452]");<span class="Apple-tab-span" style="white-space:pre"></span></div><div><br/></div><div>bool before = Tabulation_getTotalColumnVisibility();</div><div>print(before);</div><div><br/></div><div>// set hidden</div><div>Tabulation_setTotalColumnVisibility(false);</div><div><br/></div><div>bool after = Tabulation_getTotalColumnVisibility();</div><div>print(after);</div><div>// create cross</div>
| |
− | <div>createCrossDiagram({"Q9d"},{"D_Week"});</div><div><br/></div><div><br/></div><div>// result :</div><div>True</div><div>False</div>
| |
Latest revision as of 05:47, 15 December 2016
Check whether the filter info row is shown or not
Syntax
Tabulation_getFilterDescriptionVisibility();
Return value
boolean