[]
Sets whether the specified column on this sheet should display a sort indicator when automatically sorted.
public void SetColumnShowSortIndicator(int column, bool showIndicator)
Public Sub SetColumnShowSortIndicator(column As Integer, showIndicator As Boolean)
| Type | Name | Description |
|---|---|---|
| int | column | Column index |
| bool | showIndicator | Whether to display the sort indicator in the column header |
Sets whether the specified columns on this sheet should display a sort indicator when automatically sorted.
public void SetColumnShowSortIndicator(int column, int count, bool showIndicator)
Public Sub SetColumnShowSortIndicator(column As Integer, count As Integer, showIndicator As Boolean)
| Type | Name | Description |
|---|---|---|
| int | column | Column index of the first column |
| int | count | Number of columns to set |
| bool | showIndicator | Whether to display the sort indicators in the column headers |
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | Specified column index is out of range; must be between -1 and the total number of columns |