This article provides the script to apply the filter organization from the active filter panel to all pages in the analysis.
Introduction
The following script will apply the filter organization from the active filter panel to all pages in the analysis.
Code Sample
# Copyright © 2017. TIBCO Software Inc. Licensed under TIBCO BSD-style license. # Find the active filter panel activeFP = Application.Document.ActivePageReference.FilterPanel # Loop thru all the pages and apply filter organization from active filter panel for page in Application.Document.Pages: if page.FilterPanel != activeFP: page.FilterPanel.ApplyOrganizationFrom(activeFP)
References
License: TIBCO BSD-Style License
Recommended Comments
There are no comments to display.