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

PivotCustomDrawFieldValueEventArgs.Value Property

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

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public object Value { get; }

Property Value

Type Description
Object

An object which represents the value of the corresponding column field or row field.

Remarks

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

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

Note

If you try to access the Value property while an asynchronous operation is being performed, an exception will be thrown. To determine whether the operation is in progress, use the pivot grid’s IThreadSafeAccessible.IsAsyncInProgress property. For more information, see Asynchronous Mode.

See Also