-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
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:
fastexcel/src/types/python/table.rs
Line 234 in aa0ab77
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)?