Enum Class VerticalAlignment

java.lang.Object
java.lang.Enum<VerticalAlignment>
com.luciad.drawing.VerticalAlignment
All Implemented Interfaces:
Serializable, Comparable<VerticalAlignment>, Constable

public enum VerticalAlignment extends Enum<VerticalAlignment>
Represents the vertical alignment of, for example, icons or labels.
  • Enum Constant Details Link icon

    • Top Link icon

      public static final VerticalAlignment Top
      Indicates that the item's top sides are aligned vertically.
    • Center Link icon

      public static final VerticalAlignment Center
      Indicates that the item's centers are aligned vertically.
    • Bottom Link icon

      public static final VerticalAlignment Bottom
      Indicates that the item's bottom sides are aligned vertically.
  • Method Details Link icon

    • values Link icon

      public static VerticalAlignment[] 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 Link icon

      public static VerticalAlignment 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