PivotGridFilterItem(Object, String, Nullable<Boolean>, Boolean) Constructor
Initializes a new instance of the PivotGridFilterItem class.
Namespace: DevExpress.XtraPivotGrid.Data
Assembly: DevExpress.PivotGrid.v24.1.Core.dll
NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
Declaration
public PivotGridFilterItem(
object filterValue,
string text,
bool? isChecked,
bool isVisible
)
Parameters
Name | Type | Description |
---|---|---|
filterValue | 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. |