|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SheetVisibility> org.apache.poi.ss.usermodel.SheetVisibility
public enum SheetVisibility
Specifies sheet visibility
Workbook.getSheetVisibility(int)
,
Workbook.setSheetVisibility(int, SheetVisibility)
Enum Constant Summary | |
---|---|
HIDDEN
Indicates the book window is hidden, but can be shown by the user via the user interface. |
|
VERY_HIDDEN
Indicates the sheet is hidden and cannot be shown in the user interface (UI). |
|
VISIBLE
Indicates the sheet is visible. |
Method Summary | |
---|---|
static SheetVisibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SheetVisibility[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SheetVisibility VISIBLE
public static final SheetVisibility HIDDEN
public static final SheetVisibility VERY_HIDDEN
In Excel this state is only available programmatically in VBA:
ThisWorkbook.Sheets("MySheetName").Visible = xlSheetVeryHidden
Method Detail |
---|
public static SheetVisibility[] values()
for (SheetVisibility c : SheetVisibility.values()) System.out.println(c);
public static SheetVisibility valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |