SetSheetRow writes an array to row by given worksheet name, starting cell reference and a pointer to array type 'slice'. This function is concurrency safe. For example, writes an array to row 6 start with the cell B6 on Sheet1: err := f.SetSheetRow("Sheet1", "B6", &[]interface{}{"1", nil, 2})
(sheet, cell string, slice interface{})
| 1426 | // |
| 1427 | // err := f.SetSheetRow("Sheet1", "B6", &[]interface{}{"1", nil, 2}) |
| 1428 | func (f *File) SetSheetRow(sheet, cell string, slice interface{}) error { |
| 1429 | return f.setSheetCells(sheet, cell, slice, rows) |
| 1430 | } |
| 1431 | |
| 1432 | // SetSheetCol writes an array to column by given worksheet name, starting |
| 1433 | // cell reference and a pointer to array type 'slice'. For example, writes an |