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

PivotGridControl.AllowPrefilter Property

Gets or sets whether end-users are allowed to invoke the Prefilter.

Namespace: DevExpress.Xpf.PivotGrid

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

Declaration

public bool AllowPrefilter { get; set; }

Property Value

Type Description
Boolean

true to allow end-users to invoke the Prefilter; otherwise, false.

Remarks

If the AllowPrefilter property is set to true, an end-user can invoke a Prefilter via a context menu:

pivotgrid_AllowPrefilter

The Prefilter allows an end-user to apply a filter to the underlying data source. The PivotGridControl will only display and process data that matches the criteria imposed by the Prefilter.

If the AllowPrefilter property is set to false, the “Show Prefilter” menu command is not available.

To learn more, see Filtering Basics.

See Also