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

PivotGridField.GetVisibleValues() Method

Returns the field values currently shown in the PivotGrid.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.PivotGrid, 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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetVisibleValues() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also