获取合并单元格

根据给定的工作表名获取全部合并单元格的坐标区域和值。

  1. func (f *File) GetMergeCells(sheet string) ([]MergeCell, error)

获取合并单元格的值

  1. func (m *MergeCell) GetCellValue() string

GetCellValue 返回合并单元格的值。

获取合并单元格区域左上角单元格坐标

  1. func (m *MergeCell) GetStartAxis() string

GetStartAxis 返回合并单元格区域左上角单元格的坐标,例如:C2

获取合并单元格区域右下角单元格坐标

  1. func (m *MergeCell) GetEndAxis() string

GetEndAxis 返回合并单元格区域右下角单元格的坐标,例如:D4