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

PivotSummaryFilter.Validity Property

Gets whether the specified value range and aggregation level are valid.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v20.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.WindowsDesktop.PivotGrid.Core

Declaration

public PivotSummaryFilterValidity Validity { get; }

Property Value

Type Description
PivotSummaryFilterValidity

A PivotSummaryFilterValidity enumeration member that defines whether the specified value range and aggregation level are valid.

Available values:

Name Description
Valid

The specified summary values range and target aggregation level are both valid.

InvalidRange

The specified summary values range is invalid.

InvalidLevel

The specified target aggregation level is invalid.

Invalid

The specified summary values range and target aggregation level are both invalid.

Remarks

A range of visible summary values is invalid if its minimum value exceeds its maximum value or they are both set to null (Nothing in Visual Basic). To specify a range of visible summary values, use the PivotSummaryFilter.StartValue and PivotSummaryFilter.EndValue properties.

A target aggregation level is invalid if column and row fields that identify it are both set to null (Nothing in Visual Basic). To specify a target aggregation level, use the PivotSummaryFilter.ColumnField and PivotSummaryFilter.RowField properties.

See Filtering by Summaries for more information.

See Also