Skip to main content

PivotFieldValueEventArgs.Value Property

Gets the column field or row field value which the currently processed column/row header corresponds to.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public virtual object Value { get; }

Property Value

Type Description
Object

An object which represents the field value currently being processed.

Remarks

If the currently processed header is a field value or total header the Value property returns the value of the corresponding column field or row field. If the currently processed header is a grand total header or data field header the Value property will return null.

To determine the type of the currently processed header use the PivotFieldValueEventArgs.ValueType property.

See Also