Get the number of rows in the table.
(self)
| 117 | s += '</TABLE>\n>' |
| 118 | return s |
| 119 | |
| 120 | def to_string(self, border=1, color='white', line_color='black'): |
| 121 | """ Construct the HTML table string with the 'border' and 'color' settings. """ |
| 122 | if self.col_count == 0 and self.row_count == 0: |
| 123 | if self.is_empty: |
| 124 | self.add_value(utils.unquoted_str(''), border=0) |
nothing calls this directly
no outgoing calls
no test coverage detected