Skip to main content

PivotGridField.GetValueText(Object) Method

Returns a formatted text representation of the specified value according to the settings used to format field values.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public string GetValueText(
    object value
)

Parameters

Name Type Description
value Object

An object which identifies the value to format.

Returns

Type Description
String

A string that specifies the formatted text representation of the specified value.

Remarks

This method is called internally to format field values.

If the value parameter defines a null reference, this method returns a string specified by the PivotGridField.EmptyValueText property. Otherwise, this method formats the specified value according to the settings of the PivotGridField.ValueFormat and PivotGridField.GroupInterval properties.

See Also