PivotGridFieldFilterValues.Assign(PivotGridFieldFilterValues) Method
In This Article
Copies the settings from the PivotGridFieldFilterValues object passed as a parameter.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v14.2.Core.dll
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
filtered |
Pivot |
A Pivot |
#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