ShowFilter (Property)

Applies To:

OLAPFilter object

Description:

Sets or returns whether the Filters pane is visible in the data layout.

Action:

Read-write, Boolean

Example:

This example shows how to read and write the ShowFilter (Property)

if (Sections[“Query”].ShowFilters == true)
    // The filters pane is visible

// Hide the filters pane
Sections[“Query”].ShowFilters = false;