Skip to main content
A newer version of this page is available. .

PivotGridFieldOptions.ShowInFilter Property

Gets or sets whether the field is available for selection in the Filter Editor.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

[Browsable(false)]
[DefaultValue(true)]
public bool ShowInFilter { get; set; }

Property Value

Type Default Description
Boolean **true**

True, if the field is available in the Filter Editor; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowInFilter
Cross-Platform Class Library PivotGridFieldBase
.Options.ShowInFilter
WinForms Controls PivotGridField
.Options.ShowInFilter
Reporting XRPivotGridField
.Options.ShowInFilter
ASP.NET Web Forms Controls PivotGridField
.Options.ShowInFilter
MVCxPivotGridField
.Options.ShowInFilter

Remarks

If the ShowInFilter property is set to false, the field is not displayed in the drop-down field list invoked in the Filter Editor, as the Category Name field in the picture below…

FilterEditor_ShowInFilter

… and the Filter editor does not recognize the field’s name:

FilterEditor_ShowInFilter_Invalid

It may prevent end-users from using the current field when constructing filter criteria. However, if the Filter Editor edits the criteria already containing that field, the field is available despite the ShowInFilter property setting.

Note

The PivotGridFieldOptions.ShowInPrefilter and PivotGridFieldOptions.ShowInFilter properties are aliased and have the same values.

Tip

You can also prevent end-users from displaying the filter drop-down list by setting the PivotGridFieldOptions.AllowFilter field’s property to false.

See Also