Enum Class TextShape.TextDirection

java.lang.Object
java.lang.Enum<TextShape.TextDirection>
org.apache.poi.sl.usermodel.TextShape.TextDirection
All Implemented Interfaces:
Serializable, Comparable<TextShape.TextDirection>, Constable
Enclosing interface:
TextShape<S extends Shape<S,P>,P extends TextParagraph<S,P,? extends TextRun>>

public static enum TextShape.TextDirection extends Enum<TextShape.TextDirection>
Vertical Text Types
  • Enum Constant Details

    • HORIZONTAL

      public static final TextShape.TextDirection HORIZONTAL
      Horizontal text. This should be default.
    • VERTICAL

      public static final TextShape.TextDirection VERTICAL
      Vertical orientation. (each line is 90 degrees rotated clockwise, so it goes from top to bottom; each next line is to the left from the previous one).
    • VERTICAL_270

      public static final TextShape.TextDirection VERTICAL_270
      Vertical orientation. (each line is 270 degrees rotated clockwise, so it goes from bottom to top; each next line is to the right from the previous one). For HSLF: always interpreted by Powerpoint as HORIZONTAL.
    • STACKED

      public static final TextShape.TextDirection STACKED
      Determines if all of the text is vertical ("one letter on top of another"). For HSLF: not supported
  • Method Details

    • values

      public static TextShape.TextDirection[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TextShape.TextDirection valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null