CustomColumnSortEventArgs.ListSourceRowIndex2 Property
Gets the index of the second of the two rows being compared in the data source.
Namespace: DevExpress.UI.Xaml.Grid
Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
Property Value
Type | Description |
---|---|
Int32 | An integer value that specifies the second row’s index in the data source. |
Remarks
The CustomColumnSortEventArgs.ListSourceRowIndex1 and ListSourceRowIndex2 properties allow you to identify records in the grid’s data source. To obtain data objects that represent these records, and if required, their field values, use the methods provided by the data source.
The values currently being compared are returned by the CustomColumnSortEventArgs.Value1 and CustomColumnSortEventArgs.Value2 properties.
See Also