ds_grid_sort

Sort a grid according to the values of a given column.

Syntax:

ds_grid_sort(index, column, ascending);


Argument Description
index The index of the grid to sort.
column The column to use for sorting the rows
ascending Whether to sort lowest to highest (true), or highest to lowest (false).


Returns: N/A


Description

This function can be used to sort a ds_grid based on the values from a given column (much as you would sort files by date, size etc... in the Windows Explorer). The following image shows an example:


Example:

ds_grid_sort(grid, 3, false);

This would take all the values in the ds_grid indexed in the variable "grid" and sort them according to the values found in the 3rd column of the grid (as shown in the above image).


Back: DS Grids
Next: ds_grid_get
© Copyright YoYo Games Ltd. 2018 All Rights Reserved