Suppose I want to get the total height of a sheet, including header rows. Currently, the only way to do this is to load_sheet with header_row=None and then to get the total_height, because total_height currently is sensitive to the number of header rows:
|
let total_height = self.data().height() - self.header.offset(); |
Should total_height also include the number of header rows (i.e. be insensitive to the number of header rows)?
Suppose I want to get the total height of a sheet, including header rows. Currently, the only way to do this is to
load_sheetwithheader_row=Noneand then to get thetotal_height, becausetotal_heightcurrently is sensitive to the number of header rows:fastexcel/src/types/python/table.rs
Line 234 in aa0ab77
Should
total_heightalso include the number of header rows (i.e. be insensitive to the number of header rows)?