row.go 147 B

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