Пример #1
0
 def parent(self):
     """
     Returns the parent of the object.
     """
     return xlmain.Range(xl=self.impl.parent)
Пример #2
0
 def body(self):
     """
     Returns a Range object that is the size of
     the data portion of a column.
     """
     return xlmain.Range(impl=self.impl.body)
Пример #3
0
 def total(self):
     """
     Returns the Total row.
     """
     return xlmain.Range(impl=self.impl.total)
Пример #4
0
 def range(self):
     return xlmain.Range(impl=self.impl.range)
Пример #5
0
 def totals_row(self):
     """
     Returns a Range representing the Total row.
     """
     return xlmain.Range(impl=self.impl.totals_row)
Пример #6
0
 def body(self):
     """
     Returns a Range object that represents the range of values,
     excluding the header row, in a table.
     """
     return xlmain.Range(impl=self.impl.body)
Пример #7
0
 def header_row(self):
     """
     Returns a Range object that represents the range of
     the header row for a list.
     """
     return xlmain.Range(impl=self.impl.header_row)
Пример #8
0
 def range(self):
     """
     Returns a Range object that represents the range to which
     the specified list object in the above list applies.
     """
     return xlmain.Range(impl=self.impl.range)