public enum PageMode extends Enum<PageMode>
Class descibes used components of the document page.
Enum Constant and Description |
---|
FullScreen
FullScreenFull-screen mode, with no menu bar, window controls, or any other window visible.
|
UseAttachments
Attachments panel visible.
|
UseNone
Don't use any components.
|
UseOC
Optional content group panel visible.
|
UseOutlines
Document outline visible.
|
UseThumbs
Thumbnail images visible.
|
Modifier and Type | Method and Description |
---|---|
static PageMode |
getByValue(int value) |
int |
getValue() |
static PageMode |
valueOf(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 UseNone
Don't use any components.
public static final PageMode UseOutlines
Document outline visible.
public static final PageMode UseThumbs
Thumbnail images visible.
public static final PageMode FullScreen
FullScreenFull-screen mode, with no menu bar, window controls, or any other window visible.
public static final PageMode UseOC
Optional content group panel visible.
public static final PageMode UseAttachments
Attachments panel visible.
public static PageMode[] values()
for (PageMode c : PageMode.values()) System.out.println(c);
public static PageMode 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 int getValue()
public static PageMode getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.