Search code examples
javaexceljxl

JXL Hide a Sheet on creation


JXL Hide a Sheet

My requirement is like this

I need to create a sheet and make it hidden ( using JXL API) .

Later from the program I would populate values in to the hidden sheet which is a reference for another sheet.

Can some one tell me how to hide a sheet using JXL API.

Regards,

N.S.Balaji


Solution

  • Try calling:

    sheet.getSettings().setHidden(true);