PivotGridCustomFieldSortEventArgsBase<T>.Result Property
In This Article
Gets or sets the result of a custom comparison.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v24.2.Core.dll
NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
#Declaration
#Property Value
Type | Description |
---|---|
Int32 | An integer value that specifies the custom comparison result. |
#Remarks
When handling the CustomFieldSort event, the result of the custom comparison operation is set as follows:
- Set the 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 the 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 the Result to 0 to indicate that the rows are equal. In this case, the compared rows will be grouped into one field value.
Note
Set the Pivot
For more information, refer to the platform-specific events:
Win |
ASP. |
ASP. |
WPF |
---|---|---|---|
Custom |
Custom |
Custom |
Custom |
See Also