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

PivotFieldValueEventArgsBase<T>.Value Property

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

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v18.2.Core.dll

Declaration

public virtual object Value { get; }

Property Value

Type Description
Object

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 (Nothing in Visual Basic).

To determine the type of the currently processed header, use the PivotFieldValueEventArgsBase<T>.ValueType property.

See Also