mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00
examples: add simple spreadsheet example
This commit is contained in:
parent
d1d718b734
commit
3e1bcdd646
31
_examples/spreadsheet/simple/main.go
Normal file
31
_examples/spreadsheet/simple/main.go
Normal file
@ -0,0 +1,31 @@
|
||||
// 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))
|
||||
}
|
||||
}
|
||||
|
||||
if err := ss.Validate(); err != nil {
|
||||
log.Fatalf("error validating sheet: %s", err)
|
||||
}
|
||||
|
||||
ss.SaveToFile("simple.xlsx")
|
||||
}
|
BIN
_examples/spreadsheet/simple/simple.xlsx
Normal file
BIN
_examples/spreadsheet/simple/simple.xlsx
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user