fast_excel icon indicating copy to clipboard operation
fast_excel copied to clipboard

Default Row Height is not the actual Excel default

Open 0xCLARITY opened this issue 7 years ago • 1 comments

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.

0xCLARITY avatar Jul 13 '18 14:07 0xCLARITY

thanks for reporting, will look into this later

Paxa avatar Jul 17 '18 15:07 Paxa