예제 #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)