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