diff options
author | xuri <xuri.me@gmail.com> | 2021-11-29 01:21:03 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-11-29 01:21:03 +0800 |
commit | 49c9ea40d7cf7c20e9b94723c84780f4d048f4a4 (patch) | |
tree | 98d182bd0f0ef8d363bff8eaa8222f918ddb79a0 /merge.go | |
parent | f26df480e56561c30f9453a98ebf788acd48c3e2 (diff) |
ref #65: new formula function YIELD
Diffstat (limited to 'merge.go')
-rw-r--r-- | merge.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -269,15 +269,15 @@ func (m *MergeCell) GetCellValue() string { return (*m)[1] } -// GetStartAxis returns the merge start axis. -// example: "C2" +// GetStartAxis returns the top left cell coordinates of merged range, for +// example: "C2". func (m *MergeCell) GetStartAxis() string { axis := strings.Split((*m)[0], ":") return axis[0] } -// GetEndAxis returns the merge end axis. -// example: "D4" +// GetEndAxis returns the bottom right cell coordinates of merged range, for +// example: "D4". func (m *MergeCell) GetEndAxis() string { axis := strings.Split((*m)[0], ":") return axis[1] |