returns the filter set in a cell
row | number | the row id |
column | number | the column id |
page | string | optional, the name of the sheet |
object | an object with a set of options and the IDs of the row and column (see the details) |
// setting the cell filter
$$("ssheet").setCellFilter(2, 1, ["", "Europe", "Asia", "America"], "Sheet1");
// getting the cell filter
$$("ssheet").getCellFilter(2, 1, "Sheet1");
// -> { options: Array(4), row: 2, column: 1 }
The returned object contains 3 properties: