returns the data type of a specified cell
row | number | the row id |
column | number | the column id |
page | string | optional, the name of the sheet |
string | the data type of a cell ("string"|"date"|"number"|null) |
const type = $$("ssheet").getCellType(2,1); // -> "date"
Note that the method returns null if no data type is assigned to a cell.
Back to top