Method: FXlsx::File#set_sheet_visible
- Defined in:
- lib/f_xlsx/file.rb
#set_sheet_visible(sheet_name, visible) ⇒ Object
36 37 38 39 40 |
# File 'lib/f_xlsx/file.rb', line 36 def set_sheet_visible(sheet_name, visible) raise "file closed" if self.closed? XlsxExt.setSheetVisible(self.id, sheet_name, visible ? 1 : 0) end |