1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright 2017 FoxyUtils ehf. All rights reserved.
package main
import (
"log"
"math/rand"
"os"
"github.com/unidoc/unioffice/common/license"
"github.com/unidoc/unioffice/spreadsheet"
)
func init() {
// Make sure to load your metered License API key prior to using the library.
// If you need a key, you can sign up and create a free one at https://cloud.unidoc.io
err := license.SetMeteredKey(os.Getenv(`UNIDOC_LICENSE_API_KEY`))
if err != nil {
panic(err)
}
}
func main() {
ss := spreadsheet.New()
defer ss.Close()
sheet := ss.AddSheet()
row := sheet.AddRow()
row.AddCell()
for i := 0; i < 99; i++ {
row.AddCell().SetString("Header")
}
for i := 0; i < 100; i++ {
row = sheet.AddRow()
row.AddCell().SetString("Header")
for j := 0; j < 99; j++ {
row.AddCell().SetNumber(rand.Float64() * 100)
}
}
// freeze the first row and column
sheet.SetFrozen(true, true)
/* this is equivalent to
v := sheet.InitialView()
v.SetState(sml.ST_PaneStateFrozen)
v.SetYSplit(1)
v.SetXSplit(1)
v.SetTopLeft("B2")
*/
if err := ss.Validate(); err != nil {
log.Fatalf("error validating sheet: %s", err)
}
ss.SaveToFile("freeze-rows-cols.xlsx")
}
|