Difference between revisions of "Tabulation setFilterDescriptionVisibility"
(Created page with "== <span class="mw-headline" id="Tabulation_getFilterDescriptionVisibility">Tabulation_getFilterDescriptionVisibility</span> == set value of Show/hide of Filter === <span cl...") |
|||
Line 15: | Line 15: | ||
none | none | ||
− | '''Examples:''' | + | '''Examples:''' |
<code> number ReportStyleSheet_RID = 636143; | <code> number ReportStyleSheet_RID = 636143; | ||
− | + | // Convert the Report Style Sheet RID to Report Style Sheet ID | |
− | + | string ReportStyleSheet_GUID = getResourceGuid(ReportStyleSheet_RID); | |
− | + | number ReportStyleSheet_ID = getResourceIdFromGuid(ReportStyleSheet_GUID); | |
− | + | // Use the specified Report Style Sheet | |
− | + | setReportStyleSheetId(ReportStyleSheet_ID); | |
− | + | // add a filter | |
− | + | addFilter("D_Week == [201401-201452]"); | |
− | + | bool before = Tabulation_getTotalColumnVisibility(); | |
− | + | print(before); | |
− | + | // set hidden | |
− | + | Tabulation_setTotalColumnVisibility(false); | |
− | + | bool after = Tabulation_getTotalColumnVisibility(); | |
− | + | print(after); | |
− | + | // create cross | |
− | + | createCrossDiagram({"Q9d"},{"D_Week"}); | |
− | + | // result : | |
− | + | //True | |
− | + | //False</code> | |
'''Availability''' | '''Availability''' | ||
Version 5.8 | Version 5.8 |
Revision as of 08:44, 16 July 2015
Contents
Tabulation_getFilterDescriptionVisibility
set value of Show/hide of Filter
[edit][edit]Syntax
Tabulation_getFilterDescriptionVisibility(status);
[edit][edit]Arguments
status : a bool value.
[edit][edit]Return value
none
Examples:
number ReportStyleSheet_RID = 636143;
// Convert the Report Style Sheet RID to Report Style Sheet ID
string ReportStyleSheet_GUID = getResourceGuid(ReportStyleSheet_RID);
number ReportStyleSheet_ID = getResourceIdFromGuid(ReportStyleSheet_GUID);
// Use the specified Report Style Sheet
setReportStyleSheetId(ReportStyleSheet_ID);
// add a filter
addFilter("D_Week == [201401-201452]");
bool before = Tabulation_getTotalColumnVisibility();
print(before);
// set hidden
Tabulation_setTotalColumnVisibility(false);
bool after = Tabulation_getTotalColumnVisibility();
print(after);
// create cross
createCrossDiagram({"Q9d"},{"D_Week"});
// result :
//True
//False
Availability
Version 5.8