mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00
37 lines
678 B
Go
37 lines
678 B
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"baliance.com/gooxml/spreadsheet"
|
|
)
|
|
|
|
func main() {
|
|
ss := spreadsheet.New()
|
|
// add a single sheet
|
|
sheet := ss.AddSheet()
|
|
|
|
// rows
|
|
for r := 0; r < 5; r++ {
|
|
row := sheet.AddRow()
|
|
// and cells
|
|
for c := 0; c < 5; c++ {
|
|
cell := row.AddCell()
|
|
cell.SetString(fmt.Sprintf("row %d cell %d", r, c))
|
|
}
|
|
}
|
|
|
|
// no insert some rows after row 2
|
|
for i := 0; i < 4; i++ {
|
|
sheet.InsertRow(2).AddCell().SetString(fmt.Sprintf("inserted at 2, iter %d", i))
|
|
}
|
|
|
|
if err := ss.Validate(); err != nil {
|
|
log.Fatalf("error validating sheet: %s", err)
|
|
}
|
|
|
|
ss.SaveToFile("insert-rows.xlsx")
|
|
}
|