[]
Sets whether the specified column on this sheet allows filtering.
public void SetColumnAllowFilter(int column, bool allowFilter)
Public Sub SetColumnAllowFilter(column As Integer, allowFilter As Boolean)
Type | Name | Description |
---|---|---|
int | column | Column index |
bool | allowFilter | Whether to allow filtering for the specified column |
Sets whether the specified columns on this sheet allow filtering.
public void SetColumnAllowFilter(int column, int count, bool allowFilter)
Public Sub SetColumnAllowFilter(column As Integer, count As Integer, allowFilter As Boolean)
Type | Name | Description |
---|---|---|
int | column | Column index of first column to set |
int | count | Number of columns to set |
bool | allowFilter | Whether to allow filtering for the specified columns |
Type | Condition |
---|---|
ArgumentOutOfRangeException | Specified column index is out of range; must be between -1 and the total number of columns |