dhatim / fastexcel

Generate and read big Excel files quickly
Other
647 stars 116 forks source link

TableStyleInfo is inaccessible #321

Closed ant38 closed 10 months ago

ant38 commented 10 months ago

fastexcel version: 0.15.6

TableStyleInfo (inner class in Table) is not defined as public, thus it is impossible to define table style.

For exemple following code does not compile:

worksheet.range(0, 0, 8, 8)
          .createTable()
          .styleInfo()
          .setStyleName("TableStyleMedium1");