Skip to main content

PivotGridField.GetVisibleValues() Method

Returns the field values currently shown in the PivotGrid.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public List<object> GetVisibleValues()

Returns

Type Description
List<Object>

A collection of objects that represent the field values currently shown in the PivotGrid.

Remarks

The resulting collection does not contain field values excluded from the PivotGrid’s layout, using the Field or Group Filter. To obtain all values stored in the underlying data source in the current field, use the PivotGridField.GetUniqueValues property.

Note

If the PivotGridControl filters data by OLAP member unique names (controlled by the PivotGridField.OlapFilterByUniqueName and PivotGridControl.OlapFilterByUniqueName options), the GetVisibleValues method returns them instead of field values.

See Also