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

PivotCustomFieldSortEventArgs.ListSourceRowIndex1 Property

Gets the index in the data source of the first of the two rows being compared.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public int ListSourceRowIndex1 { get; }

Property Value

Type Description
Int32

An integer value that is the row index in the data source.

Remarks

You can use the ListSourceRowIndex1 property in your sorting algorithm to compare values contained in another column instead of the current column values.

The ListSourceRowIndex1 is the index of the record in the data source that provides data for the current PivotGrid field and whose value for the e.Field.FieldName column equals the PivotCustomFieldSortEventArgs.Value1 value. To get another column’s value, call the e.GetListSourceColumnValue method with the ListSourceRowIndex1 and the column name as the parameters.

Note

When the PivotGridControl.CustomFieldSort event fires for the field values in the Filter Drop-Down, the ListSourceRowIndex1 and ListSourceRowIndex2 properties are always -1.

See Also