Lines Matching refs:rows
21 additional rows
30 * header-rows: [int] count of header rows
38 * rspan: [int] additionale rows (*morerows*)
117 , 'header-rows': directives.nonnegative_int
152 self.rows = []
164 header_rows = self.directive.options.get('header-rows', 0)
188 for row in self.rows[:header_rows]:
194 for row in self.rows[header_rows:]:
234 self.rows.append(row)
240 This method rounds off the table definition in :py:member:`rows`.
243 arising from spanning cells over rows and/or columns.
252 while y < len(self.rows):
255 while x < len(self.rows[y]):
256 cell = self.rows[y][x]
264 self.rows[y].insert(x+c+1, None)
268 # handle colspan in spanned rows
272 self.rows[y+r+1].insert(x+c, None)
282 for row in self.rows:
292 for row in self.rows:
307 for row in self.rows: