package
Version:
v0.0.0-...-38b871a
Opens a new window with list of versions in this module.
Published: Nov 23, 2019
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Cell struct {
R string `xml:"r,attr"`
Type string `xml:"t,attr"`
Value string `xml:"v"`
}
type Row struct {
Num int `xml:"r,attr"`
Cells []Cell `xml:"c"`
}
type SharedStrings struct {
Strings []string `xml:"si>t"`
}
type Sheet struct {
Name string `xml:"name,attr"`
ID int `xml:"sheetId,attr"`
}
type SheetData struct {
Rows []Row `xml:"row"`
}
type SheetView struct {
TabSelected int `xml:"tabSelected,attr"`
}
type Workbook struct {
Sheets []Sheet `xml:"sheets>sheet"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.