returns the data type of a specified cell
| row |
| 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