public enum WordsPageNumberLocation extends Enum<WordsPageNumberLocation>
| Enum Constant and Description |
|---|
BOTTOM_CENTER
Put the page number in the bottom center of the page.
|
BOTTOM_LEFT
Put the page number in the bottom left corner of the page.
|
BOTTOM_RIGHT
Put the page number in the bottom right corner of the page.
|
NOT_APPLY
Leave the loaded WordProcessing document intact.
|
TOP_CENTER
Put the page number in the top center of the page.
|
TOP_LEFT
Put the page number in the top left corner of the page.
|
TOP_RIGHT
Put the page number in the top right corner of the page.
|
| Modifier and Type | Method and Description |
|---|---|
static WordsPageNumberLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WordsPageNumberLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WordsPageNumberLocation BOTTOM_CENTER
public static final WordsPageNumberLocation BOTTOM_LEFT
public static final WordsPageNumberLocation BOTTOM_RIGHT
public static final WordsPageNumberLocation NOT_APPLY
public static final WordsPageNumberLocation TOP_CENTER
public static final WordsPageNumberLocation TOP_LEFT
public static final WordsPageNumberLocation TOP_RIGHT
public static WordsPageNumberLocation 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 WordsPageNumberLocation[] values()
for (WordsPageNumberLocation c : WordsPageNumberLocation.values()) System.out.println(c);
Copyright © 2026 Aspose Pty Ltd. All rights reserved.