Exemplo n.º 1
0
 def print_title_rows(self, rows):
     """
     Set rows to be printed on the top of every page
     format `1:3`
     """
     if rows is not None:
         if not ROW_RANGE_RE.match(rows):
             raise ValueError("Print title rows must be the form 1:3")
     self._print_rows = rows
Exemplo n.º 2
0
 def print_title_rows(self, rows):
     """
     Set rows to be printed on the top of every page
     format `1:3`
     """
     if rows is not None:
         if not ROW_RANGE_RE.match(rows):
             raise ValueError("Print title rows must be the form 1:3")
     self._print_rows = rows