Skip to main content

PivotGridFilterItem(Object, String, Nullable<Boolean>) Constructor

Initializes a new instance of the PivotGridFilterItem class.

Namespace: DevExpress.XtraPivotGrid.Data

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

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

public PivotGridFilterItem(
    object value,
    string text,
    bool? isChecked
)

Parameters

Name Type Description
value Object

A field value that corresponds to the current filter value. This value is assigned to the PivotGridFilterItem.Value property.

text String

A String that specifies the item’s caption. This value is assigned to the PivotGridFilterItem.Text property.

isChecked Nullable<Boolean>

true if the item should be checked; false if it should be unchecked; null if its check state should be indeterminate. This value is assigned to the PivotGridFilterItem.IsChecked property.

See Also