GetRowCount returns the number of rows in the table.
()
| 778 | |
| 779 | // GetRowCount returns the number of rows in the table. |
| 780 | func (t *Table) GetRowCount() int { |
| 781 | return t.content.GetRowCount() |
| 782 | } |
| 783 | |
| 784 | // GetColumnCount returns the (maximum) number of columns in the table. |
| 785 | func (t *Table) GetColumnCount() int { |
nothing calls this directly
no test coverage detected