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

PivotGridFieldFilterValues.IsEquals(IList<Object>) Method

Returns whether the current filter values and the specified values match.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

public bool IsEquals(
    IList<object> values
)

Parameters

Name Type Description
values IList<Object>

A list of objects that represents the values that should be compared with the current filter values.

Returns

Type Description
Boolean

true if the current filter values and the specified values match; otherwise, false.

Remarks

To compare filter values taking into account filter settings (like filter type), use an overload of the IsEquals method, which takes the PivotGridFieldFilterValues type parameter.

See Also