diff options
Diffstat (limited to 'excelize.go')
-rw-r--r-- | excelize.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/excelize.go b/excelize.go index a2bec07..feb41cb 100644 --- a/excelize.go +++ b/excelize.go @@ -40,6 +40,7 @@ type File struct { VMLDrawing map[string]*vmlDrawing WorkBook *xlsxWorkbook WorkBookRels *xlsxWorkbookRels + WorkSheetRels map[string]*xlsxWorkbookRels XLSX map[string][]byte } @@ -84,6 +85,7 @@ func OpenReader(r io.Reader) (*File, error) { SheetCount: sheetCount, DecodeVMLDrawing: make(map[string]*decodeVmlDrawing), VMLDrawing: make(map[string]*vmlDrawing), + WorkSheetRels: make(map[string]*xlsxWorkbookRels), XLSX: file, } f.CalcChain = f.calcChainReader() |