var instance = new GC.Spread.Sheets.Tables.Table(name, row, col, rowCount, colCount, style, options); var returnValue; // Type: any returnValue = instance.filterButtonVisible(tableColumnIndex, value);
function filterButtonVisible( tableColumnIndex : number, value : boolean ) : any;
Parameters
- tableColumnIndex
- The table column index of the filter button.
- value
- Whether the table column's filter button is displayed.
Return Value
The table column's filter button display state.If no parameter is set, returns
false
if all filter buttons are invisible, otherwise, true
. If only a number is set, returns whether the specified table column' filter button is displayed. If only a boolean that indicates whether to display filter buttons is set, applies to all filter buttons and returns the table. If two parameters are provided, applies to the specified table columns' filter button and returns the table.