fast_excel
fast_excel copied to clipboard
Default Row Height is not the actual Excel default
require 'fast_excel'
workbook = FastExcel.open()
sheet = workbook.add_worksheet('Sheet1')
pp sheet[:default_row_height] # This is 0.3, but should be 15.0
I expect the sheet[:default_row_height] to be equal to LXW_DEF_ROW_HEIGHT, as defined here:
https://github.com/Paxa/fast_excel/blob/0f414a3bcf2dbf11425c60550ba818fa185b4204/libxlsxwriter/include/xlsxwriter/worksheet.h#L73
But instead I keep getting a value of 0.3.
thanks for reporting, will look into this later