From 551fb8a9e4b03fe718a339e75aeacc8b5581378a Mon Sep 17 00:00:00 2001 From: xuri <xuri.me@gmail.com> Date: Sat, 13 Aug 2022 11:21:59 +0800 Subject: This closes #1244 and closes #1314, improving the compatibility with Google Sheet - Format code with `gofmt` --- merge.go | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'merge.go') diff --git a/merge.go b/merge.go index 0f57826..d7400a2 100644 --- a/merge.go +++ b/merge.go @@ -27,25 +27,24 @@ func (mc *xlsxMergeCell) Rect() ([]int, error) { // discards the other values. For example create a merged cell of D3:E9 on // Sheet1: // -// err := f.MergeCell("Sheet1", "D3", "E9") +// err := f.MergeCell("Sheet1", "D3", "E9") // // If you create a merged cell that overlaps with another existing merged cell, // those merged cells that already exist will be removed. The cell coordinates // tuple after merging in the following range will be: A1(x3,y1) D1(x2,y1) // A8(x3,y4) D8(x2,y4) // -// B1(x1,y1) D1(x2,y1) -// +------------------------+ -// | | -// A4(x3,y3) | C4(x4,y3) | -// +------------------------+ | -// | | | | -// | |B5(x1,y2) | D5(x2,y2)| -// | +------------------------+ -// | | -// |A8(x3,y4) C8(x4,y4)| -// +------------------------+ -// +// B1(x1,y1) D1(x2,y1) +// +------------------------+ +// | | +// A4(x3,y3) | C4(x4,y3) | +// +------------------------+ | +// | | | | +// | |B5(x1,y2) | D5(x2,y2)| +// | +------------------------+ +// | | +// |A8(x3,y4) C8(x4,y4)| +// +------------------------+ func (f *File) MergeCell(sheet, hCell, vCell string) error { rect, err := areaRefToCoordinates(hCell + ":" + vCell) if err != nil { @@ -74,7 +73,7 @@ func (f *File) MergeCell(sheet, hCell, vCell string) error { // UnmergeCell provides a function to unmerge a given coordinate area. // For example unmerge area D3:E9 on Sheet1: // -// err := f.UnmergeCell("Sheet1", "D3", "E9") +// err := f.UnmergeCell("Sheet1", "D3", "E9") // // Attention: overlapped areas will also be unmerged. func (f *File) UnmergeCell(sheet string, hCell, vCell string) error { -- cgit v1.2.1