applyRowStyle applies the specified style to all cells for the specified table row
(trow *tableRow, trs *TableRowStyle)
| 1557 | |
| 1558 | // applyRowStyle applies the specified style to all cells for the specified table row |
| 1559 | func (t *Table) applyRowStyle(trow *tableRow, trs *TableRowStyle) { |
| 1560 | |
| 1561 | for i := 0; i < len(trow.cells); i++ { |
| 1562 | cell := trow.cells[i] |
| 1563 | cell.ApplyStyle(&trs.PanelStyle) |
| 1564 | } |
| 1565 | } |
| 1566 | |
| 1567 | // applyStatusStyle applies the status style |
| 1568 | func (t *Table) applyStatusStyle() { |
no test coverage detected