Worksheet.Sort(CellRange, Color) Method
In This Article
Sorts the specified range by the specified font color in ascending order.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
range | Cell |
The range of worksheet cells. |
font |
Color | The font color. |
#Remarks
The following code sample sorts the cell range by font color in ascending order:
Worksheet worksheet = workbook.Worksheets["SortSample"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Sort the "A3:F22" range by font color in ascending order.
CellRange range = worksheet.Range["A3:F22"];
worksheet.Sort(range, worksheet["F12"].Font.Color);
See Also