public static enum PageResizer.HorizontalAnchorPoint extends Enum<PageResizer.HorizontalAnchorPoint>
The horizontal anchor point specifies the horizontal alignment, determining the reference point for positioning during resizing operations. Possible values include: - LEFT
| Modifier and Type | Method and Description |
|---|---|
static PageResizer.HorizontalAnchorPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageResizer.HorizontalAnchorPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageResizer.HorizontalAnchorPoint LEFT
public static final PageResizer.HorizontalAnchorPoint CENTER
public static final PageResizer.HorizontalAnchorPoint RIGHT
public static PageResizer.HorizontalAnchorPoint[] values()
for (PageResizer.HorizontalAnchorPoint c : PageResizer.HorizontalAnchorPoint.values()) System.out.println(c);
public static PageResizer.HorizontalAnchorPoint 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 nullCopyright © 1998–2025 Apryse Group NV. All rights reserved.