public enum ParagraphPositioningMode extends Enum<ParagraphPositioningMode>
Specifies variant for determining the location of the element on the page.
Enum Constant and Description |
---|
Absolute
The location is specified by the Left and Top values,
does not depend on previous elements and does not affect the location of subsequent ones.
|
Default
The location is determined by the previously placed elements.
|
Modifier and Type | Method and Description |
---|---|
static ParagraphPositioningMode |
getByValue(int value) |
int |
getValue() |
static ParagraphPositioningMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParagraphPositioningMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParagraphPositioningMode Default
The location is determined by the previously placed elements. Adding an element is taken into account when determining the location of subsequent elements.
public static final ParagraphPositioningMode Absolute
The location is specified by the Left and Top values, does not depend on previous elements and does not affect the location of subsequent ones.
public static ParagraphPositioningMode[] values()
for (ParagraphPositioningMode c : ParagraphPositioningMode.values()) System.out.println(c);
public static ParagraphPositioningMode 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 ParagraphPositioningMode getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.