Skip to main content
A newer version of this page is available.
All docs
V19.2

CustomFieldDataEventArgs(PivotGridData, PivotGridField, Int32, Object) Constructor

Initializes a new instance of the CustomFieldDataEventArgs class.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.2.dll

Declaration

public CustomFieldDataEventArgs(
    PivotGridData data,
    PivotGridField field,
    int listSourceRow,
    object _value
)

Parameters

Name Type Description
data DevExpress.XtraPivotGrid.Data.PivotGridData

A DevExpress.XtraPivotGrid.Data.PivotGridData object.

field PivotGridField

A PivotGridField object which represents the unbound field currently being processed. This value is assigned to the CustomFieldDataEventArgsBase<T>.Field property.

listSourceRow Int32

An integer value which identifies the current row’s index in the data source. This value is assigned to the CustomFieldDataEventArgsBase<T>.ListSourceRowIndex property.

_value Object

An object which represents the processed cell’s value. This value is assigned to the CustomFieldDataEventArgsBase<T>.Value property.

See Also