r, _ := cell.GetCoordinates() 没有GetCoordinates这个方法
时间: 2024-03-09 16:51:15 浏览: 117
使用jxl.jar操作Excel
非常抱歉,我犯了一个错误。如果您想要获取单元格的行和列的索引,请使用以下代码:
```
cell := sheet.Cell(row, col)
rowIndex := cell.Row.Index
colIndex := cell.Column.Index
```
其中,`row` 和 `col` 是您要获取索引的单元格的行和列的索引,`rowIndex` 和 `colIndex` 则分别是单元格的行和列的索引。非常感谢您的指正,如果您还有其他问题,请随时告诉我。
阅读全文