PivotGridFieldFilterValues.Assign(PivotGridFieldFilterValues) Method
Copies the settings from the PivotGridFieldFilterValues object passed as a parameter.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v24.1.Core.dll
NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
filteredValues | PivotGridFieldFilterValues | A PivotGridFieldFilterValues object whose settings are assigned to the current object. If null (Nothing in Visual Basic), this method does nothing. |
Remarks
The Assign method does the following:
- sets the current object’s PivotGridFieldFilterValues.FilterType and PivotGridFieldFilterValues.ShowBlanks properties to the values of the PivotGridFieldFilterValues.FilterType and PivotGridFieldFilterValues.ShowBlanks properties of the object passed as the parameter;
- removes all elements from the PivotGridFieldFilterValues.Values array of the current object;
- copies the values from the PivotGridFieldFilterValues.Values array of the object passed as a parameter to the current object’s PivotGridFieldFilterValues.Values array.
See Also