索引转单元格坐标

  1. func CoordinatesToCellName(col, row int, abs ...bool) (string, error)

[X, Y] 形式的行、列索引转换为由字母和数字组合而成的单元格坐标,或返回错误。例如:

  1. excelize.CoordinatesToCellName(1, 1) // returns "A1", nil
  2. excelize.CoordinatesToCellName(1, 1, true) // returns "$A$1", nil