public enum SheetVisibility extends Enum<SheetVisibility>
ExcelWorksheet visibility
.Enum Constant and Description |
---|
HIDDEN
Sheet is hidden, but is displayed in unhide dialog.
|
VERY_HIDDEN
Sheet is very hidden and can be made visible only programmatically.
|
VISIBLE
Sheet is visible.
|
Modifier and Type | Method and Description |
---|---|
static SheetVisibility |
valueOf(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.
|
public static final SheetVisibility HIDDEN
public static final SheetVisibility VERY_HIDDEN
public static final SheetVisibility VISIBLE
public static SheetVisibility valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static SheetVisibility[] values()
for (SheetVisibility c : SheetVisibility.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.