summaryrefslogtreecommitdiff
path: root/xmlWorkbook.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2019-05-17 22:58:12 +0800
committerxuri <xuri.me@gmail.com>2019-05-17 22:58:12 +0800
commitf91f548614a7182ce66d55d10ed311e9b7e08a2a (patch)
treea50c4397c12f10d57967f49ffa373d9e5f6f4a27 /xmlWorkbook.go
parent7e77e14814658486267e3f237f484fa8e63a0cd4 (diff)
Resolve #404, get sheet map by target rels.
Diffstat (limited to 'xmlWorkbook.go')
-rw-r--r--xmlWorkbook.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/xmlWorkbook.go b/xmlWorkbook.go
index ad66f42..90a1427 100644
--- a/xmlWorkbook.go
+++ b/xmlWorkbook.go
@@ -146,9 +146,8 @@ type xlsxSheets struct {
Sheet []xlsxSheet `xml:"sheet"`
}
-// xlsxSheet directly maps the sheet element from the namespace
-// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
-// not checked it for completeness - it does as much as I need.
+// xlsxSheet defines a sheet in this workbook. Sheet data is stored in a
+// separate part.
type xlsxSheet struct {
Name string `xml:"name,attr,omitempty"`
SheetID int `xml:"sheetId,attr,omitempty"`