Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Tabulation getFilterDescriptionVisibility: Difference between revisions

From Catglobe Wiki
Tungocman (talk | contribs)
No edit summary
Tungocman (talk | contribs)
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category:Diagram/report_generating_CGScript_functions]]
[[Category:Filter_functions]]
__NOTOC__
__NOTOC__


Line 11: Line 11:


boolean
boolean
===Examples===
<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&nbsp;:
  //True
  //False
</code>

Latest revision as of 04:47, 15 December 2016


Check whether the filter info row is shown or not

Syntax

Tabulation_getFilterDescriptionVisibility();

Return value

boolean