コード例 #1
0
ファイル: worksheet.py プロジェクト: simmoe/digidaktik
 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
コード例 #2
0
ファイル: worksheet.py プロジェクト: dotintent/ifm-openpyxl
 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