Lines Matching full:rows
21 additional rows
30 * header-rows: [int] count of header rows
38 * rspan: [int] additionale rows (*morerows*)
107 , 'header-rows': directives.nonnegative_int
142 self.rows = []
154 header_rows = self.directive.options.get('header-rows', 0)
178 for row in self.rows[:header_rows]:
184 for row in self.rows[header_rows:]:
224 self.rows.append(row)
230 This method rounds off the table definition in :py:member:`rows`.
233 arising from spanning cells over rows and/or columns.
242 while y < len(self.rows):
245 while x < len(self.rows[y]):
246 cell = self.rows[y][x]
254 self.rows[y].insert(x+c+1, None)
258 # handle colspan in spanned rows
262 self.rows[y+r+1].insert(x+c, None)
272 for row in self.rows:
282 for row in self.rows:
297 for row in self.rows: