Uses of Class
org.apache.poi.ss.usermodel.SheetVisibility
-
Packages that use SheetVisibility Package Description org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel -
-
Uses of SheetVisibility in org.apache.poi.hssf.model
Methods in org.apache.poi.hssf.model that return SheetVisibility Modifier and Type Method Description SheetVisibility
InternalWorkbook. getSheetVisibility(int sheetnum)
Gets the hidden flag for a given sheet.Methods in org.apache.poi.hssf.model with parameters of type SheetVisibility Modifier and Type Method Description void
InternalWorkbook. setSheetHidden(int sheetnum, SheetVisibility visibility)
Hide or unhide a sheet. -
Uses of SheetVisibility in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return SheetVisibility Modifier and Type Method Description SheetVisibility
HSSFWorkbook. getSheetVisibility(int sheetIx)
Methods in org.apache.poi.hssf.usermodel with parameters of type SheetVisibility Modifier and Type Method Description void
HSSFWorkbook. setSheetVisibility(int sheetIx, SheetVisibility visibility)
-
Uses of SheetVisibility in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return SheetVisibility Modifier and Type Method Description SheetVisibility
Workbook. getSheetVisibility(int sheetIx)
Get the visibility (visible, hidden, very hidden) of a sheet in this workbookstatic SheetVisibility
SheetVisibility. valueOf(String name)
Returns the enum constant of this type with the specified name.static SheetVisibility[]
SheetVisibility. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.poi.ss.usermodel with parameters of type SheetVisibility Modifier and Type Method Description void
Workbook. setSheetVisibility(int sheetIx, SheetVisibility visibility)
Hide or unhide a sheet.
-