[]
Automatically sorts the rows of a sheet according to the specified column.
public void AutoSortColumn(int column)
Public Sub AutoSortColumn(column As Integer)
Type | Name | Description |
---|---|---|
int | column | Index of column to set |
Automatically sorts the rows of a sheet according to the specified column in the specified order and shows the sort indicator (unless disabled).
public void AutoSortColumn(int column, bool ascending)
Public Sub AutoSortColumn(column As Integer, ascending As Boolean)
Type | Name | Description |
---|---|---|
int | column | Index of column to set |
bool | ascending | Whether sort is ascending (or else descending) |
Automatically sorts the rows of a sheet according to the specified column in the specified order and uses the sort indicator as specified.
public void AutoSortColumn(int column, bool ascending, bool showIndicator)
Public Sub AutoSortColumn(column As Integer, ascending As Boolean, showIndicator As Boolean)