returns the editor 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 editor type and a set of options (see the details) |
// setting a cell editor
$$("ss1").setCellEditor(8, 1, {
editor: "ss_richselect",
options: ["One","Two","Three"]
}, "Sheet1");
// getting the cell editor
$$("ss1").getCellEditor(8, 1, "Sheet1");
// -> { editor:"ss_richselect", options: ["One","Two","Three"] }
The returned object contains two properties:
{ editor:"ss_richselect", options:["One","Two","Three"] }
// or
{ editor:"ss_richselect", options:"B3:B7" }