summaryrefslogtreecommitdiff
path: root/excelize.go
diff options
context:
space:
mode:
Diffstat (limited to 'excelize.go')
-rw-r--r--excelize.go18
1 files changed, 10 insertions, 8 deletions
diff --git a/excelize.go b/excelize.go
index e53d9f0..39adb87 100644
--- a/excelize.go
+++ b/excelize.go
@@ -13,11 +13,14 @@ import (
// File define a populated XLSX file struct.
type File struct {
- checked map[string]bool
- XLSX map[string]string
- Path string
- Sheet map[string]*xlsxWorksheet
- SheetCount int
+ checked map[string]bool
+ ContentTypes *xlsxTypes
+ Path string
+ Sheet map[string]*xlsxWorksheet
+ SheetCount int
+ WorkBook *xlsxWorkbook
+ WorkBookRels *xlsxWorkbookRels
+ XLSX map[string]string
}
// OpenFile take the name of an XLSX file and returns a populated XLSX file
@@ -53,11 +56,10 @@ func OpenReader(r io.Reader) (*File, error) {
return nil, err
}
return &File{
- Sheet: make(map[string]*xlsxWorksheet),
checked: make(map[string]bool),
- XLSX: file,
- Path: "",
+ Sheet: make(map[string]*xlsxWorksheet),
SheetCount: sheetCount,
+ XLSX: file,
}, nil
}