row.go 161 B

123456789101112
  1. package xlsx
  2. type Row struct {
  3. Cells []*Cell
  4. Hidden bool
  5. }
  6. func (r *Row) AddCell() *Cell {
  7. cell := &Cell{}
  8. r.Cells = append(r.Cells, cell)
  9. return cell
  10. }