| Enum Constant and Description |
|---|
ATTACHMENTS
Display the Document with its attachments
|
BOOKMARKS
Display the Document with the Bookmarks panel open (appears in the Document structure as "UseOutlines")
|
DOCUMENT_ONLY
Display the Document without Bookmarks or Thumbnails (appears in the Document structure as "UseNone")
|
FULLSCREEN
Display the Document in full-screen mode
|
NO_PREFERENCE
Leave the PageMode as is (default for a new Document)
|
OPTIONAL_CONTENT
Display the Document with the Layers panel open
|
THUMBNAILS
Display the Document with the Thumbnails panel open
|
| Modifier and Type | Method and Description |
|---|---|
static PageMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageMode NO_PREFERENCE
public static final PageMode DOCUMENT_ONLY
public static final PageMode BOOKMARKS
public static final PageMode THUMBNAILS
public static final PageMode FULLSCREEN
public static final PageMode OPTIONAL_CONTENT
public static final PageMode ATTACHMENTS
public static PageMode[] values()
for (PageMode c : PageMode.values()) System.out.println(c);
public static PageMode 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 namejava.lang.NullPointerException - if the argument is null