Skip to main content

PivotGridControl.PrefilterString Property

Gets or sets the filter expression specified by the Prefilter.

Namespace: DevExpress.Xpf.PivotGrid

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

Declaration

[XtraSerializablePropertyId(2)]
[XtraSerializableProperty]
public string PrefilterString { get; set; }
<XtraSerializablePropertyId(2)>
<XtraSerializableProperty>
Public Property PrefilterString As String

Property Value

Type Description
String

A String value that specifies the filter expression.

Remarks

The PrefilterString property specifies the textual representation of the prefilter criteria, which is constructed using a specific criteria language. To learn more about the criteria syntax, see Criteria Language Syntax.

You can also specify the prefliter criteria using the PivotGridControl.PrefilterCriteria property. After the criteria has been changed, the PivotGridControl.PrefilterCriteriaChanged event is fired.

To learn more, see Prefilter.

See Also