索引转单元格坐标
func CoordinatesToCellName(col, row int, abs ...bool) (string, error)
将 [X, Y]
形式的行、列索引转换为由字母和数字组合而成的单元格坐标,或返回错误。例如:
excelize.CoordinatesToCellName(1, 1) // returns "A1", nil
excelize.CoordinatesToCellName(1, 1, true) // returns "$A$1", nil