Versions in this module Expand all Collapse all v0 v0.0.4 Mar 16, 2026 v0.0.3 Mar 16, 2026 v0.0.2 Mar 16, 2026 Changes in this version type Workbook + func (wb *Workbook) SheetList() []string v0.0.1 Mar 16, 2026 Changes in this version + type Cell struct + Col int + Row int + Style *Style + Type CellType + func (c *Cell) Bool() bool + func (c *Cell) Float() float64 + func (c *Cell) String() string + func (c *Cell) Time() time.Time + func (c *Cell) Value() string + type CellType int + const CellTypeBool + const CellTypeDate + const CellTypeEmpty + const CellTypeError + const CellTypeFormula + const CellTypeNumber + const CellTypeString + type Font struct + Bold bool + Color uint32 + Italic bool + Name string + Size float64 + Underline bool + type NumberFormat struct + Format string + Index int + type Row struct + Index int + func (r *Row) Cell(col int) *Cell + func (r *Row) CellCount() int + type Sheet struct + Name string + func (s *Sheet) Row(index int) *Row + func (s *Sheet) RowCount() int + func (s *Sheet) Strings() [][]string + type Style struct + FontIndex int + FormatIndex int + XFIndex int + type Workbook struct + Sheets []*Sheet + func Open(path string) (*Workbook, error) + func Read(r io.ReadSeeker) (*Workbook, error) + func (wb *Workbook) Save(path string) error + func (wb *Workbook) Sheet(index int) *Sheet + func (wb *Workbook) SheetByName(name string) *Sheet + func (wb *Workbook) SheetCount() int + func (wb *Workbook) Write(w io.Writer) error