[]
Serializable, Comparable<VerticalAnchor>, ConstableUse this enum with ITextFrame.setVerticalAnchor(VerticalAnchor) to position text at the top, middle, or bottom of the text frame.
IShape shape = worksheet.getShapes().addShape(AutoShapeType.Rectangle, 10, 10, 120, 80);
shape.getTextFrame().getTextRange().setText("Hello");
shape.getTextFrame().setVerticalAnchor(VerticalAnchor.AnchorMiddle);
Enum.EnumDesc<E extends Enum<E>>static VerticalAnchorforValue(int value) intgetValue()static VerticalAnchorstatic VerticalAnchor[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null