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

CustomFieldDataEventArgsBase<T>.Value Property

Gets or sets the currently processed value.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

public object Value { get; set; }

Property Value

Type Description
Object

The value currently being processed.

Remarks

Use the Value property to provide a custom value that should be calculated based on values retrieved using the CustomFieldDataEventArgsBase<T>.GetListSourceColumnValue method.

This custom value will be posted to the drill-down data source within the processed row (the CustomFieldDataEventArgsBase<T>.ListSourceRowIndex property) and field (the CustomFieldDataEventArgsBase<T>.Field property).

Initially, the Value property is set to null (Nothing in Visual Basic).

See Also