Esempio n. 1
0
 def parent(self):
     """
     Returns the parent of the object.
     """
     return xlmain.Range(xl=self.impl.parent)
Esempio n. 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)
Esempio n. 3
0
 def total(self):
     """
     Returns the Total row.
     """
     return xlmain.Range(impl=self.impl.total)
Esempio n. 4
0
 def range(self):
     return xlmain.Range(impl=self.impl.range)
Esempio n. 5
0
 def totals_row(self):
     """
     Returns a Range representing the Total row.
     """
     return xlmain.Range(impl=self.impl.totals_row)
Esempio n. 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)
Esempio n. 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)
Esempio n. 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)