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

PivotGridField.GetDisplayText(Object) Method

Returns the display representation of the specified value, according to the settings used to format field values.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.PivotGrid, DevExpress.Wpf.PivotGrid

Declaration

public string GetDisplayText(
    object value
)

Parameters

Name Type Description
value Object

An object which identifies the value to format.

Returns

Type Description
String

A String value that represents the formatted value.

Remarks

The GetDisplayText method fires the PivotGridControl’s PivotGridControl.FieldValueDisplayText event, allowing you to provide a custom text for the specified value.

The settings used to format field values are specified via the PivotGridField.ValueFormat property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetDisplayText(Object) 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