PivotCustomFieldSortEventArgs.Result Property
In This Article
Gets or sets the result of a custom comparison.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Int32 | An integer value specifying the custom comparison's result. |
#Remarks
When handling the PivotGridControl.CustomFieldSort event the result of the custom comparison operation must be set as follows:
- Set Result to -1 if the first row should be positioned above the second row when data is sorted in ascending order. When data is sorted in descending order the first row will be positioned below the second row.
- Set Result to 1 if the first row should be positioned below the second row when data is sorted in ascending order. When data is sorted in descending order the first row will be positioned above the second row.
- Set Result to 0 to indicate that the rows are equal. In this instance, the rows will be arranged according to their indexes in the data source.
NOTE
The Pivot
See Also