public static enum PageResizer.VerticalAnchorPoint extends Enum<PageResizer.VerticalAnchorPoint>
The available anchor points are: - TOP: The top edge of the element serves as the reference point for alignment. - CENTER: The center of the element is used as the alignment reference. - BOTTOM: The bottom edge of the element serves as the reference point for alignment.
This enumeration is employed by the PageResizer class to determine the vertical alignment of content during resizing operations.
| Modifier and Type | Method and Description |
|---|---|
static PageResizer.VerticalAnchorPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageResizer.VerticalAnchorPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageResizer.VerticalAnchorPoint TOP
public static final PageResizer.VerticalAnchorPoint CENTER
public static final PageResizer.VerticalAnchorPoint BOTTOM
public static PageResizer.VerticalAnchorPoint[] values()
for (PageResizer.VerticalAnchorPoint c : PageResizer.VerticalAnchorPoint.values()) System.out.println(c);
public static PageResizer.VerticalAnchorPoint 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.