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

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

Initializes a new instance of the PivotGridFilterItem class.

Namespace: DevExpress.XtraPivotGrid.Data

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

Declaration

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

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.

isVisible Boolean

true if the item should be visible; otherwise, false. This value is assigned to the PivotGridFilterItem.IsVisible property.

See Also