Skip to main content

PivotGridControl.AllowPrefilter Property

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

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v14.2.dll

Declaration

[XtraSerializablePropertyId(0)]
[XtraSerializableProperty]
public bool AllowPrefilter { get; set; }
<XtraSerializablePropertyId(0)>
<XtraSerializableProperty>
Public Property AllowPrefilter As Boolean

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 Prefilter.

See Also