DataSorter
DataSorter class
Summary description for DataSorter.
class DataSorter;
Example
const { Workbook, CellArea, SortOrder, SaveFormat } = AsposeCells;
//Instantiate a new Workbook object.
var workbook = new Workbook(data);
//Get the workbook datasorter object.
var sorter = workbook.dataSorter;
//Set the first order for datasorter object.
sorter.order1 = SortOrder.Descending;
//Define the first key.
sorter.key1 = 0;
//Create a cells area (range).
var ca = new CellArea();
//Specify the start row index.
ca.startRow = 0;
//Specify the start column index.
ca.startColumn = 0;
//Specify the last row index.
ca.endRow = 12;
//Specify the last column index.
ca.endColumn = 1;
//Sort data in the specified data range (A1:B14)
sorter.sort(workbook.worksheets.get(0).cells, ca);
//Save the excel file.
var uint8Array = workbook.save(SaveFormat.Xlsx);
Properties
Property | Type | Description |
---|---|---|
keys | DataSorterKeyCollection | Readonly. Gets the key list of data sorter. |
hasHeaders | boolean | Represents whether the range has headers. |
key1 | number | Represents first sorted column index(absolute position, column A is 0, B is 1, …). |
order1 | SortOrder | Represents sort order of the first key. |
key2 | number | Represents second sorted column index(absolute position, column A is 0, B is 1, …). |
order2 | SortOrder | Represents sort order of the second key. |
key3 | number | Represents third sorted column index(absolute position, column A is 0, B is 1, …). |
order3 | SortOrder | Represents sort order of the third key. |
sortLeftToRight | boolean | True means that sorting orientation is from left to right. False means that sorting orientation is from top to bottom. The default value is false. |
caseSensitive | boolean | Gets and sets whether case sensitive when comparing string. |
sortAsNumber | boolean | Indicates whether sorting anything that looks like a number. |
Methods
Method | Description |
---|---|
clear() | Clear all settings. |
addKey(number, SortOrder) | Adds sorted column index and sort order. |
addKey(number, SortOrder, string) | Adds sorted column index and sort order with custom sort list. |
addKey(number, SortOnType, SortOrder, VObject) | Adds sorted column index and sort order with custom sort list. |
addKey(number, SortOrder, string[]) | Adds sorted column index and sort order with custom sort list. |
addColorKey(number, SortOnType, SortOrder, Color) | Adds color sort key. |
sort(Cells, number, number, number, number) | Sorts the data of the area. |
sort(Cells, CellArea) | Sort the data of the area. |
sort() | Sort the data in the range. |
keys
Readonly. Gets the key list of data sorter.
keys : DataSorterKeyCollection;
hasHeaders
Represents whether the range has headers.
hasHeaders : boolean;
key1
Represents first sorted column index(absolute position, column A is 0, B is 1, …).
key1 : number;
order1
Represents sort order of the first key.
order1 : SortOrder;
key2
Represents second sorted column index(absolute position, column A is 0, B is 1, …).
key2 : number;
order2
Represents sort order of the second key.
order2 : SortOrder;
key3
Represents third sorted column index(absolute position, column A is 0, B is 1, …).
key3 : number;
order3
Represents sort order of the third key.
order3 : SortOrder;
sortLeftToRight
True means that sorting orientation is from left to right. False means that sorting orientation is from top to bottom. The default value is false.
sortLeftToRight : boolean;
caseSensitive
Gets and sets whether case sensitive when comparing string.
caseSensitive : boolean;
sortAsNumber
Indicates whether sorting anything that looks like a number.
sortAsNumber : boolean;
clear()
Clear all settings.
clear() : void;
addKey(number, SortOrder)
Adds sorted column index and sort order.
addKey(key: number, order: SortOrder) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
key | number | The sorted column index(absolute position, column A is 0, B is 1, …) |
order | SortOrder | The sort order |
addKey(number, SortOrder, string)
Adds sorted column index and sort order with custom sort list.
addKey(key: number, order: SortOrder, customList: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
key | number | The sorted column index(absolute position, column A is 0, B is 1, …) |
order | SortOrder | The sort order. |
customList | string | The custom sort list. |
addKey(number, SortOnType, SortOrder, VObject)
Adds sorted column index and sort order with custom sort list.
addKey(key: number, type: SortOnType, order: SortOrder, customList: VObject) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
key | number | The sorted column index(absolute position, column A is 0, B is 1, …) |
type | SortOnType | The sorted value type. |
order | SortOrder | The sort order. |
customList | VObject | The custom sort list. |
Remarks
If type is SortOnType.CellColor or SortOnType.FontColor, the customList is Color.
addKey(number, SortOrder, string[])
Adds sorted column index and sort order with custom sort list.
addKey(key: number, order: SortOrder, customList: string[]) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
key | number | The sorted column index(absolute position, column A is 0, B is 1, …) |
order | SortOrder | The sort order. |
customList | string[] | The custom sort list. |
addColorKey(number, SortOnType, SortOrder, Color)
Adds color sort key.
addColorKey(key: number, type: SortOnType, order: SortOrder, color: Color) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
key | number | The sorted column index(absolute position, column A is 0, B is 1, …) |
type | SortOnType | The sorted color value type. |
order | SortOrder | The sort order. |
color | Color | The custom sort color. |
sort(Cells, number, number, number, number)
Sorts the data of the area.
sort(cells: Cells, startRow: number, startColumn: number, endRow: number, endColumn: number) : number[];
Parameters:
Parameter | Type | Description |
---|---|---|
cells | Cells | The cells contains the data area. |
startRow | number | The start row of the area. |
startColumn | number | The start column of the area. |
endRow | number | The end row of the area. |
endColumn | number | The end column of the area. |
Returns
the original indices(absolute position, for example, column A is 0, B is 1, …) of the sorted rows/columns. If no rows/columns needs to be moved by this sorting operation, null will be returned.
sort(Cells, CellArea)
Sort the data of the area.
sort(cells: Cells, area: CellArea) : number[];
Parameters:
Parameter | Type | Description |
---|---|---|
cells | Cells | The cells contains the data area. |
area | CellArea | The area needed to sort |
Returns
the original indices(absolute position, for example, column A is 0, B is 1, …) of the sorted rows/columns. If no rows/columns needs to be moved by this sorting operation, null will be returned.
sort()
Sort the data in the range.
sort() : number[];
Returns
the original indices(absolute position, for example, column A is 0, B is 1, …) of the sorted rows/columns. If no rows/columns needs to be moved by this sorting operation, null will be returned.