2019-01-01 13:20:14 +08:00
|
|
|
// Copyright 2016 - 2019 The excelize Authors. All rights reserved. Use of
|
2018-09-14 00:44:23 +08:00
|
|
|
// this source code is governed by a BSD-style license that can be found in
|
|
|
|
// the LICENSE file.
|
|
|
|
//
|
|
|
|
// Package excelize providing a set of functions that allow you to write to
|
|
|
|
// and read from XLSX files. Support reads and writes XLSX file generated by
|
|
|
|
// Microsoft Excel™ 2007 and later. Support save file without losing original
|
|
|
|
// charts of XLSX. This library needs Go version 1.8 or later.
|
2018-09-14 00:58:48 +08:00
|
|
|
|
2016-10-31 19:13:22 +08:00
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
2017-07-24 10:26:02 +08:00
|
|
|
"bytes"
|
2016-10-31 19:13:22 +08:00
|
|
|
"encoding/xml"
|
2018-05-05 13:33:19 +08:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2017-07-24 10:26:02 +08:00
|
|
|
"math"
|
2016-11-02 12:58:51 +08:00
|
|
|
"strconv"
|
2016-10-31 19:13:22 +08:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2017-09-13 22:00:33 +08:00
|
|
|
// GetRows return all the rows in a sheet by given worksheet name (case
|
|
|
|
// sensitive). For example:
|
2016-11-02 12:58:51 +08:00
|
|
|
//
|
2017-09-13 22:00:33 +08:00
|
|
|
// for _, row := range xlsx.GetRows("Sheet1") {
|
2016-11-02 12:58:51 +08:00
|
|
|
// for _, colCell := range row {
|
|
|
|
// fmt.Print(colCell, "\t")
|
|
|
|
// }
|
|
|
|
// fmt.Println()
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
func (f *File) GetRows(sheet string) [][]string {
|
2017-03-12 20:38:26 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2017-10-18 19:07:35 +08:00
|
|
|
name, ok := f.sheetMap[trimSheetName(sheet)]
|
|
|
|
if !ok {
|
2019-01-01 18:18:42 +08:00
|
|
|
return [][]string{}
|
2017-10-18 19:07:35 +08:00
|
|
|
}
|
2017-03-12 20:38:26 +08:00
|
|
|
if xlsx != nil {
|
|
|
|
output, _ := xml.Marshal(f.Sheet[name])
|
2018-05-07 16:12:51 +08:00
|
|
|
f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
|
2016-10-31 19:13:22 +08:00
|
|
|
}
|
2018-05-27 11:25:55 +08:00
|
|
|
xml.NewDecoder(bytes.NewReader(f.readXML(name)))
|
2017-06-29 13:28:44 +08:00
|
|
|
d := f.sharedStringsReader()
|
2017-02-12 19:03:24 +08:00
|
|
|
var inElement string
|
2017-02-17 17:41:11 +08:00
|
|
|
var r xlsxRow
|
2017-10-18 19:07:35 +08:00
|
|
|
tr, tc := f.getTotalRowsCols(name)
|
2019-01-01 18:18:42 +08:00
|
|
|
rows := make([][]string, tr)
|
|
|
|
for i := range rows {
|
|
|
|
rows[i] = make([]string, tc+1)
|
2017-02-17 17:41:11 +08:00
|
|
|
}
|
2019-01-01 18:18:42 +08:00
|
|
|
var row int
|
2018-05-27 11:25:55 +08:00
|
|
|
decoder := xml.NewDecoder(bytes.NewReader(f.readXML(name)))
|
2017-02-12 19:03:24 +08:00
|
|
|
for {
|
|
|
|
token, _ := decoder.Token()
|
|
|
|
if token == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
switch startElement := token.(type) {
|
|
|
|
case xml.StartElement:
|
|
|
|
inElement = startElement.Name.Local
|
|
|
|
if inElement == "row" {
|
2017-02-17 17:41:11 +08:00
|
|
|
r = xlsxRow{}
|
2018-05-27 11:25:55 +08:00
|
|
|
_ = decoder.DecodeElement(&r, &startElement)
|
2017-02-17 17:41:11 +08:00
|
|
|
cr := r.R - 1
|
2017-02-12 19:03:24 +08:00
|
|
|
for _, colCell := range r.C {
|
2017-06-27 17:53:06 +08:00
|
|
|
c := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
|
2017-02-12 19:03:24 +08:00
|
|
|
val, _ := colCell.getValueFrom(f, d)
|
2017-02-17 17:41:11 +08:00
|
|
|
rows[cr][c] = val
|
2019-01-01 18:18:42 +08:00
|
|
|
if val != "" {
|
|
|
|
row = r.R
|
|
|
|
}
|
2017-02-12 19:03:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
2016-11-02 12:58:51 +08:00
|
|
|
}
|
|
|
|
}
|
2019-01-01 18:18:42 +08:00
|
|
|
return rows[:row]
|
2016-10-31 19:13:22 +08:00
|
|
|
}
|
|
|
|
|
2018-05-05 13:33:19 +08:00
|
|
|
// Rows defines an iterator to a sheet
|
|
|
|
type Rows struct {
|
|
|
|
decoder *xml.Decoder
|
|
|
|
token xml.Token
|
|
|
|
err error
|
|
|
|
f *File
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next will return true if find the next row element.
|
|
|
|
func (rows *Rows) Next() bool {
|
|
|
|
for {
|
|
|
|
rows.token, rows.err = rows.decoder.Token()
|
|
|
|
if rows.err == io.EOF {
|
|
|
|
rows.err = nil
|
|
|
|
}
|
|
|
|
if rows.token == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
switch startElement := rows.token.(type) {
|
|
|
|
case xml.StartElement:
|
|
|
|
inElement := startElement.Name.Local
|
|
|
|
if inElement == "row" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error will return the error when the find next row element
|
|
|
|
func (rows *Rows) Error() error {
|
|
|
|
return rows.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Columns return the current row's column values
|
|
|
|
func (rows *Rows) Columns() []string {
|
|
|
|
if rows.token == nil {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
startElement := rows.token.(xml.StartElement)
|
|
|
|
r := xlsxRow{}
|
2018-05-27 11:25:55 +08:00
|
|
|
_ = rows.decoder.DecodeElement(&r, &startElement)
|
2018-05-05 13:33:19 +08:00
|
|
|
d := rows.f.sharedStringsReader()
|
2018-05-27 11:25:55 +08:00
|
|
|
row := make([]string, len(r.C))
|
2018-05-05 13:33:19 +08:00
|
|
|
for _, colCell := range r.C {
|
|
|
|
c := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
|
|
|
|
val, _ := colCell.getValueFrom(rows.f, d)
|
|
|
|
row[c] = val
|
|
|
|
}
|
|
|
|
return row
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrSheetNotExist defines an error of sheet is not exist
|
|
|
|
type ErrSheetNotExist struct {
|
|
|
|
SheetName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrSheetNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("Sheet %s is not exist", string(err.SheetName))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rows return a rows iterator. For example:
|
|
|
|
//
|
2018-08-06 10:21:24 +08:00
|
|
|
// rows, err := xlsx.Rows("Sheet1")
|
2018-05-05 13:33:19 +08:00
|
|
|
// for rows.Next() {
|
|
|
|
// for _, colCell := range rows.Columns() {
|
|
|
|
// fmt.Print(colCell, "\t")
|
|
|
|
// }
|
|
|
|
// fmt.Println()
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
func (f *File) Rows(sheet string) (*Rows, error) {
|
|
|
|
xlsx := f.workSheetReader(sheet)
|
|
|
|
name, ok := f.sheetMap[trimSheetName(sheet)]
|
|
|
|
if !ok {
|
|
|
|
return nil, ErrSheetNotExist{sheet}
|
|
|
|
}
|
|
|
|
if xlsx != nil {
|
2018-05-07 16:14:35 +08:00
|
|
|
output, _ := xml.Marshal(f.Sheet[name])
|
2018-05-07 16:12:51 +08:00
|
|
|
f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
|
2018-05-05 13:33:19 +08:00
|
|
|
}
|
|
|
|
return &Rows{
|
|
|
|
f: f,
|
2018-05-07 16:12:51 +08:00
|
|
|
decoder: xml.NewDecoder(bytes.NewReader(f.readXML(name))),
|
2018-05-05 13:33:19 +08:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2017-02-17 17:41:11 +08:00
|
|
|
// getTotalRowsCols provides a function to get total columns and rows in a
|
2017-09-13 22:00:33 +08:00
|
|
|
// worksheet.
|
2017-10-18 19:07:35 +08:00
|
|
|
func (f *File) getTotalRowsCols(name string) (int, int) {
|
2018-05-07 16:12:51 +08:00
|
|
|
decoder := xml.NewDecoder(bytes.NewReader(f.readXML(name)))
|
2017-02-17 17:41:11 +08:00
|
|
|
var inElement string
|
|
|
|
var r xlsxRow
|
|
|
|
var tr, tc int
|
|
|
|
for {
|
|
|
|
token, _ := decoder.Token()
|
|
|
|
if token == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
switch startElement := token.(type) {
|
|
|
|
case xml.StartElement:
|
|
|
|
inElement = startElement.Name.Local
|
|
|
|
if inElement == "row" {
|
|
|
|
r = xlsxRow{}
|
2018-05-27 11:25:55 +08:00
|
|
|
_ = decoder.DecodeElement(&r, &startElement)
|
2017-02-17 17:41:11 +08:00
|
|
|
tr = r.R
|
|
|
|
for _, colCell := range r.C {
|
2017-06-27 17:53:06 +08:00
|
|
|
col := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
|
2017-02-17 17:41:11 +08:00
|
|
|
if col > tc {
|
|
|
|
tc = col
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return tr, tc
|
|
|
|
}
|
|
|
|
|
2018-04-02 10:59:15 +08:00
|
|
|
// SetRowHeight provides a function to set the height of a single row. For
|
|
|
|
// example, set the height of the first row in Sheet1:
|
2017-02-02 10:59:31 +08:00
|
|
|
//
|
2018-04-02 10:59:15 +08:00
|
|
|
// xlsx.SetRowHeight("Sheet1", 1, 50)
|
2017-02-02 10:59:31 +08:00
|
|
|
//
|
2018-04-02 10:59:15 +08:00
|
|
|
func (f *File) SetRowHeight(sheet string, row int, height float64) {
|
2017-03-12 20:38:26 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 {
|
|
|
|
return
|
|
|
|
}
|
2017-02-02 10:59:31 +08:00
|
|
|
cells := 0
|
2018-04-02 10:59:15 +08:00
|
|
|
rowIdx := row - 1
|
|
|
|
completeRow(xlsx, row, cells)
|
|
|
|
xlsx.SheetData.Row[rowIdx].Ht = height
|
|
|
|
xlsx.SheetData.Row[rowIdx].CustomHeight = true
|
2017-02-02 10:59:31 +08:00
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// getRowHeight provides a function to get row height in pixels by given sheet
|
2017-06-29 11:14:33 +08:00
|
|
|
// name and row index.
|
|
|
|
func (f *File) getRowHeight(sheet string, row int) int {
|
|
|
|
xlsx := f.workSheetReader(sheet)
|
|
|
|
for _, v := range xlsx.SheetData.Row {
|
|
|
|
if v.R == row+1 && v.Ht != 0 {
|
|
|
|
return int(convertRowHeightToPixels(v.Ht))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Optimisation for when the row heights haven't changed.
|
|
|
|
return int(defaultRowHeightPixels)
|
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// GetRowHeight provides a function to get row height by given worksheet name
|
2018-04-02 10:59:15 +08:00
|
|
|
// and row index. For example, get the height of the first row in Sheet1:
|
|
|
|
//
|
|
|
|
// xlsx.GetRowHeight("Sheet1", 1)
|
|
|
|
//
|
2017-06-29 11:14:33 +08:00
|
|
|
func (f *File) GetRowHeight(sheet string, row int) float64 {
|
|
|
|
xlsx := f.workSheetReader(sheet)
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 || row > len(xlsx.SheetData.Row) {
|
|
|
|
return defaultRowHeightPixels // it will be better to use 0, but we take care with BC
|
|
|
|
}
|
2017-06-29 11:14:33 +08:00
|
|
|
for _, v := range xlsx.SheetData.Row {
|
2018-04-02 10:59:15 +08:00
|
|
|
if v.R == row && v.Ht != 0 {
|
2017-06-29 11:14:33 +08:00
|
|
|
return v.Ht
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Optimisation for when the row heights haven't changed.
|
|
|
|
return defaultRowHeightPixels
|
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// sharedStringsReader provides a function to get the pointer to the structure
|
2017-06-29 13:28:44 +08:00
|
|
|
// after deserialization of xl/sharedStrings.xml.
|
|
|
|
func (f *File) sharedStringsReader() *xlsxSST {
|
|
|
|
if f.SharedStrings == nil {
|
|
|
|
var sharedStrings xlsxSST
|
2018-03-02 10:19:40 +08:00
|
|
|
ss := f.readXML("xl/sharedStrings.xml")
|
2018-05-07 16:12:51 +08:00
|
|
|
if len(ss) == 0 {
|
2018-03-02 10:19:40 +08:00
|
|
|
ss = f.readXML("xl/SharedStrings.xml")
|
|
|
|
}
|
2018-10-18 10:23:08 +08:00
|
|
|
_ = xml.Unmarshal(namespaceStrictToTransitional(ss), &sharedStrings)
|
2017-06-29 13:28:44 +08:00
|
|
|
f.SharedStrings = &sharedStrings
|
|
|
|
}
|
|
|
|
return f.SharedStrings
|
2016-10-31 19:13:22 +08:00
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// getValueFrom return a value from a column/row cell, this function is
|
|
|
|
// inteded to be used with for range on rows an argument with the xlsx opened
|
|
|
|
// file.
|
2017-02-12 19:03:24 +08:00
|
|
|
func (xlsx *xlsxC) getValueFrom(f *File, d *xlsxSST) (string, error) {
|
2016-11-02 12:58:51 +08:00
|
|
|
switch xlsx.T {
|
|
|
|
case "s":
|
|
|
|
xlsxSI := 0
|
|
|
|
xlsxSI, _ = strconv.Atoi(xlsx.V)
|
2017-02-07 14:03:03 +08:00
|
|
|
if len(d.SI[xlsxSI].R) > 0 {
|
|
|
|
value := ""
|
|
|
|
for _, v := range d.SI[xlsxSI].R {
|
|
|
|
value += v.T
|
|
|
|
}
|
|
|
|
return value, nil
|
|
|
|
}
|
2017-05-05 14:40:28 +08:00
|
|
|
return f.formattedValue(xlsx.S, d.SI[xlsxSI].T), nil
|
2016-11-02 12:58:51 +08:00
|
|
|
case "str":
|
2017-05-05 14:40:28 +08:00
|
|
|
return f.formattedValue(xlsx.S, xlsx.V), nil
|
2018-04-09 19:44:08 +08:00
|
|
|
case "inlineStr":
|
|
|
|
return f.formattedValue(xlsx.S, xlsx.IS.T), nil
|
2016-11-02 12:58:51 +08:00
|
|
|
default:
|
2017-05-05 14:40:28 +08:00
|
|
|
return f.formattedValue(xlsx.S, xlsx.V), nil
|
2016-11-02 12:58:51 +08:00
|
|
|
}
|
2016-10-31 19:13:22 +08:00
|
|
|
}
|
2017-06-08 11:11:11 +08:00
|
|
|
|
2019-03-07 15:13:32 +08:00
|
|
|
// SetRowVisible provides a function to set visible of a single row by given
|
2019-03-06 21:40:45 +08:00
|
|
|
// worksheet name and Excel row number. For example, hide row 2 in Sheet1:
|
2017-06-08 11:11:11 +08:00
|
|
|
//
|
2017-06-14 15:01:49 +08:00
|
|
|
// xlsx.SetRowVisible("Sheet1", 2, false)
|
2017-06-08 11:11:11 +08:00
|
|
|
//
|
2019-03-06 21:40:45 +08:00
|
|
|
func (f *File) SetRowVisible(sheet string, row int, visible bool) {
|
2017-06-08 11:11:11 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 {
|
|
|
|
return
|
|
|
|
}
|
2017-06-08 11:11:11 +08:00
|
|
|
cells := 0
|
2019-03-06 21:40:45 +08:00
|
|
|
completeRow(xlsx, row, cells)
|
|
|
|
rowIdx := row - 1
|
2017-06-14 15:01:49 +08:00
|
|
|
if visible {
|
2019-03-06 21:40:45 +08:00
|
|
|
xlsx.SheetData.Row[rowIdx].Hidden = false
|
2017-06-14 15:01:49 +08:00
|
|
|
return
|
|
|
|
}
|
2019-03-06 21:40:45 +08:00
|
|
|
xlsx.SheetData.Row[rowIdx].Hidden = true
|
2017-06-08 11:11:11 +08:00
|
|
|
}
|
|
|
|
|
2019-03-07 15:13:32 +08:00
|
|
|
// GetRowVisible provides a function to get visible of a single row by given
|
|
|
|
// worksheet name and Excel row number. For example, get visible state of row
|
|
|
|
// 2 in Sheet1:
|
2017-06-08 11:11:11 +08:00
|
|
|
//
|
2017-06-14 15:01:49 +08:00
|
|
|
// xlsx.GetRowVisible("Sheet1", 2)
|
2017-06-08 11:11:11 +08:00
|
|
|
//
|
2019-03-06 21:40:45 +08:00
|
|
|
func (f *File) GetRowVisible(sheet string, row int) bool {
|
2017-06-08 11:11:11 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 || row > len(xlsx.SheetData.Row) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
rowIndex := row - 1
|
2017-06-08 11:11:11 +08:00
|
|
|
cells := 0
|
2019-03-06 21:40:45 +08:00
|
|
|
completeRow(xlsx, row, cells)
|
2017-06-14 15:01:49 +08:00
|
|
|
return !xlsx.SheetData.Row[rowIndex].Hidden
|
2017-06-08 11:11:11 +08:00
|
|
|
}
|
2017-07-24 10:26:02 +08:00
|
|
|
|
2018-05-11 10:14:18 +08:00
|
|
|
// SetRowOutlineLevel provides a function to set outline level number of a
|
2019-03-06 21:40:45 +08:00
|
|
|
// single row by given worksheet name and Excel row number. For example, outline row
|
2018-05-11 10:14:18 +08:00
|
|
|
// 2 in Sheet1 to level 1:
|
2018-05-08 02:32:20 +08:00
|
|
|
//
|
|
|
|
// xlsx.SetRowOutlineLevel("Sheet1", 2, 1)
|
|
|
|
//
|
2019-03-06 21:40:45 +08:00
|
|
|
func (f *File) SetRowOutlineLevel(sheet string, row int, level uint8) {
|
2018-05-08 02:32:20 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 {
|
|
|
|
return
|
|
|
|
}
|
2018-05-08 02:32:20 +08:00
|
|
|
cells := 0
|
2019-03-06 21:40:45 +08:00
|
|
|
completeRow(xlsx, row, cells)
|
|
|
|
xlsx.SheetData.Row[row-1].OutlineLevel = level
|
2018-05-08 02:32:20 +08:00
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// GetRowOutlineLevel provides a function to get outline level number of a
|
2019-03-06 21:40:45 +08:00
|
|
|
// single row by given worksheet name and Exce row number.
|
|
|
|
// For example, get outline number of row 2 in Sheet1:
|
2018-05-08 02:32:20 +08:00
|
|
|
//
|
|
|
|
// xlsx.GetRowOutlineLevel("Sheet1", 2)
|
|
|
|
//
|
2019-03-06 21:40:45 +08:00
|
|
|
func (f *File) GetRowOutlineLevel(sheet string, row int) uint8 {
|
2018-05-08 02:32:20 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 || row > len(xlsx.SheetData.Row) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return xlsx.SheetData.Row[row-1].OutlineLevel
|
2018-05-08 02:32:20 +08:00
|
|
|
}
|
|
|
|
|
2019-03-07 16:03:31 +08:00
|
|
|
// RemoveRow provides a function to remove single row by given worksheet name
|
2019-03-06 21:40:45 +08:00
|
|
|
// and Excel row number. For example, remove row 3 in Sheet1:
|
2017-07-24 10:26:02 +08:00
|
|
|
//
|
2019-03-06 21:40:45 +08:00
|
|
|
// xlsx.RemoveRow("Sheet1", 3)
|
2017-07-24 10:26:02 +08:00
|
|
|
//
|
2019-02-22 22:17:38 +08:00
|
|
|
// Use this method with caution, which will affect changes in references such
|
|
|
|
// as formulas, charts, and so on. If there is any referenced value of the
|
|
|
|
// worksheet, it will cause a file error when you open it. The excelize only
|
|
|
|
// partially updates these references currently.
|
2017-07-24 10:26:02 +08:00
|
|
|
func (f *File) RemoveRow(sheet string, row int) {
|
2019-03-06 21:40:45 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
|
|
|
if row < 1 || row > len(xlsx.SheetData.Row) {
|
2017-07-24 10:26:02 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
for i, r := range xlsx.SheetData.Row {
|
2017-09-30 17:07:59 +08:00
|
|
|
if r.R == row {
|
|
|
|
xlsx.SheetData.Row = append(xlsx.SheetData.Row[:i], xlsx.SheetData.Row[i+1:]...)
|
|
|
|
f.adjustHelper(sheet, -1, row, -1)
|
|
|
|
return
|
2017-07-24 10:26:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 15:13:32 +08:00
|
|
|
// InsertRow provides a function to insert a new row after given Excel row
|
|
|
|
// number starting from 1. For example, create a new row before row 3 in
|
|
|
|
// Sheet1:
|
2017-07-24 10:26:02 +08:00
|
|
|
//
|
2019-03-06 21:40:45 +08:00
|
|
|
// xlsx.InsertRow("Sheet1", 3)
|
2017-07-24 10:26:02 +08:00
|
|
|
//
|
|
|
|
func (f *File) InsertRow(sheet string, row int) {
|
2019-03-06 21:40:45 +08:00
|
|
|
if row < 1 {
|
2017-07-24 10:26:02 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
f.adjustHelper(sheet, -1, row, 1)
|
|
|
|
}
|
|
|
|
|
2019-03-06 21:40:45 +08:00
|
|
|
// DuplicateRow inserts a copy of specified row (by it Excel row number) below
|
2018-12-26 13:33:40 +08:00
|
|
|
//
|
|
|
|
// xlsx.DuplicateRow("Sheet1", 2)
|
|
|
|
//
|
2019-02-22 22:17:38 +08:00
|
|
|
// Use this method with caution, which will affect changes in references such
|
|
|
|
// as formulas, charts, and so on. If there is any referenced value of the
|
|
|
|
// worksheet, it will cause a file error when you open it. The excelize only
|
|
|
|
// partially updates these references currently.
|
2018-12-26 13:33:40 +08:00
|
|
|
func (f *File) DuplicateRow(sheet string, row int) {
|
2018-12-27 22:28:28 +08:00
|
|
|
f.DuplicateRowTo(sheet, row, row+1)
|
|
|
|
}
|
|
|
|
|
2019-03-06 21:40:45 +08:00
|
|
|
// DuplicateRowTo inserts a copy of specified row by it Excel number
|
|
|
|
// to specified row position moving down exists rows after target position
|
2018-12-27 22:28:28 +08:00
|
|
|
//
|
|
|
|
// xlsx.DuplicateRowTo("Sheet1", 2, 7)
|
|
|
|
//
|
2019-02-22 22:17:38 +08:00
|
|
|
// Use this method with caution, which will affect changes in references such
|
|
|
|
// as formulas, charts, and so on. If there is any referenced value of the
|
|
|
|
// worksheet, it will cause a file error when you open it. The excelize only
|
|
|
|
// partially updates these references currently.
|
2018-12-27 22:28:28 +08:00
|
|
|
func (f *File) DuplicateRowTo(sheet string, row, row2 int) {
|
2019-03-06 21:40:45 +08:00
|
|
|
xlsx := f.workSheetReader(sheet)
|
|
|
|
|
|
|
|
if row < 1 || row > len(xlsx.SheetData.Row) || row2 < 1 || row == row2 {
|
2018-12-26 13:33:40 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-12-27 22:28:28 +08:00
|
|
|
var ok bool
|
|
|
|
var rowCopy xlsxRow
|
|
|
|
|
2019-03-06 21:40:45 +08:00
|
|
|
for i, r := range xlsx.SheetData.Row {
|
2018-12-26 13:33:40 +08:00
|
|
|
if r.R == row {
|
2019-03-06 21:40:45 +08:00
|
|
|
rowCopy = xlsx.SheetData.Row[i]
|
2018-12-27 22:28:28 +08:00
|
|
|
ok = true
|
2018-12-26 13:33:40 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-12-27 22:28:28 +08:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2018-12-26 13:33:40 +08:00
|
|
|
|
2018-12-27 22:28:28 +08:00
|
|
|
f.adjustHelper(sheet, -1, row2, 1)
|
|
|
|
|
|
|
|
idx2 := -1
|
2019-03-06 21:40:45 +08:00
|
|
|
for i, r := range xlsx.SheetData.Row {
|
2018-12-27 22:28:28 +08:00
|
|
|
if r.R == row2 {
|
|
|
|
idx2 = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 21:40:45 +08:00
|
|
|
if idx2 == -1 && len(xlsx.SheetData.Row) >= row2 {
|
2018-12-26 13:33:40 +08:00
|
|
|
return
|
|
|
|
}
|
2018-12-27 22:28:28 +08:00
|
|
|
|
|
|
|
rowCopy.C = append(make([]xlsxC, 0, len(rowCopy.C)), rowCopy.C...)
|
|
|
|
f.ajustSingleRowDimensions(&rowCopy, row2)
|
|
|
|
|
2018-12-26 13:33:40 +08:00
|
|
|
if idx2 != -1 {
|
2019-03-06 21:40:45 +08:00
|
|
|
xlsx.SheetData.Row[idx2] = rowCopy
|
2018-12-26 13:33:40 +08:00
|
|
|
} else {
|
2019-03-06 21:40:45 +08:00
|
|
|
xlsx.SheetData.Row = append(xlsx.SheetData.Row, rowCopy)
|
2018-12-26 13:33:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// checkRow provides a function to check and fill each column element for all
|
|
|
|
// rows and make that is continuous in a worksheet of XML. For example:
|
2017-07-24 10:26:02 +08:00
|
|
|
//
|
|
|
|
// <row r="15" spans="1:22" x14ac:dyDescent="0.2">
|
|
|
|
// <c r="A15" s="2" />
|
|
|
|
// <c r="B15" s="2" />
|
|
|
|
// <c r="F15" s="1" />
|
|
|
|
// <c r="G15" s="1" />
|
|
|
|
// </row>
|
|
|
|
//
|
|
|
|
// in this case, we should to change it to
|
|
|
|
//
|
|
|
|
// <row r="15" spans="1:22" x14ac:dyDescent="0.2">
|
|
|
|
// <c r="A15" s="2" />
|
|
|
|
// <c r="B15" s="2" />
|
|
|
|
// <c r="C15" s="2" />
|
|
|
|
// <c r="D15" s="2" />
|
|
|
|
// <c r="E15" s="2" />
|
|
|
|
// <c r="F15" s="1" />
|
|
|
|
// <c r="G15" s="1" />
|
|
|
|
// </row>
|
|
|
|
//
|
|
|
|
// Noteice: this method could be very slow for large spreadsheets (more than
|
|
|
|
// 3000 rows one sheet).
|
|
|
|
func checkRow(xlsx *xlsxWorksheet) {
|
|
|
|
buffer := bytes.Buffer{}
|
2017-10-16 10:42:43 +08:00
|
|
|
for k := range xlsx.SheetData.Row {
|
|
|
|
lenCol := len(xlsx.SheetData.Row[k].C)
|
2017-09-30 17:07:59 +08:00
|
|
|
if lenCol > 0 {
|
2017-10-16 10:42:43 +08:00
|
|
|
endR := string(strings.Map(letterOnlyMapF, xlsx.SheetData.Row[k].C[lenCol-1].R))
|
|
|
|
endRow, _ := strconv.Atoi(strings.Map(intOnlyMapF, xlsx.SheetData.Row[k].C[lenCol-1].R))
|
2017-09-30 17:07:59 +08:00
|
|
|
endCol := TitleToNumber(endR) + 1
|
|
|
|
if lenCol < endCol {
|
|
|
|
oldRow := xlsx.SheetData.Row[k].C
|
|
|
|
xlsx.SheetData.Row[k].C = xlsx.SheetData.Row[k].C[:0]
|
2018-12-27 22:28:28 +08:00
|
|
|
var tmp []xlsxC
|
2018-01-06 08:05:43 +08:00
|
|
|
for i := 0; i < endCol; i++ {
|
2017-09-30 17:07:59 +08:00
|
|
|
buffer.WriteString(ToAlphaString(i))
|
|
|
|
buffer.WriteString(strconv.Itoa(endRow))
|
|
|
|
tmp = append(tmp, xlsxC{
|
|
|
|
R: buffer.String(),
|
|
|
|
})
|
|
|
|
buffer.Reset()
|
|
|
|
}
|
|
|
|
xlsx.SheetData.Row[k].C = tmp
|
|
|
|
for _, y := range oldRow {
|
|
|
|
colAxis := TitleToNumber(string(strings.Map(letterOnlyMapF, y.R)))
|
|
|
|
xlsx.SheetData.Row[k].C[colAxis] = y
|
|
|
|
}
|
2017-07-24 10:26:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// completeRow provides a function to check and fill each column element for a
|
2017-07-24 10:26:02 +08:00
|
|
|
// single row and make that is continuous in a worksheet of XML by given row
|
|
|
|
// index and axis.
|
|
|
|
func completeRow(xlsx *xlsxWorksheet, row, cell int) {
|
|
|
|
currentRows := len(xlsx.SheetData.Row)
|
|
|
|
if currentRows > 1 {
|
|
|
|
lastRow := xlsx.SheetData.Row[currentRows-1].R
|
|
|
|
if lastRow >= row {
|
|
|
|
row = lastRow
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i := currentRows; i < row; i++ {
|
|
|
|
xlsx.SheetData.Row = append(xlsx.SheetData.Row, xlsxRow{
|
|
|
|
R: i + 1,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
buffer := bytes.Buffer{}
|
|
|
|
for ii := currentRows; ii < row; ii++ {
|
|
|
|
start := len(xlsx.SheetData.Row[ii].C)
|
|
|
|
if start == 0 {
|
|
|
|
for iii := start; iii < cell; iii++ {
|
|
|
|
buffer.WriteString(ToAlphaString(iii))
|
|
|
|
buffer.WriteString(strconv.Itoa(ii + 1))
|
|
|
|
xlsx.SheetData.Row[ii].C = append(xlsx.SheetData.Row[ii].C, xlsxC{
|
|
|
|
R: buffer.String(),
|
|
|
|
})
|
|
|
|
buffer.Reset()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 10:21:24 +08:00
|
|
|
// convertRowHeightToPixels provides a function to convert the height of a
|
|
|
|
// cell from user's units to pixels. If the height hasn't been set by the user
|
|
|
|
// we use the default value. If the row is hidden it has a value of zero.
|
2017-07-24 10:26:02 +08:00
|
|
|
func convertRowHeightToPixels(height float64) float64 {
|
|
|
|
var pixels float64
|
|
|
|
if height == 0 {
|
|
|
|
return pixels
|
|
|
|
}
|
|
|
|
pixels = math.Ceil(4.0 / 3.0 * height)
|
|
|
|
return pixels
|
|
|
|
}
|