Enum Class HorizontalAlignment

java.lang.Object
java.lang.Enum<HorizontalAlignment>
com.grapecity.documents.excel.HorizontalAlignment
所有已实现的接口:
Serializable, Comparable<HorizontalAlignment>, Constable

public enum HorizontalAlignment extends Enum<HorizontalAlignment>
Specifies the horizontal alignment of a cell or object.
  • 嵌套类概要

    从类继承的嵌套类/接口 java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • 枚举常量概要

    枚举常量
    枚举常量
    说明
    Spedifies that the text should be centered.
    Specifies that the horizontal alignment is centered across multiple cells.
    Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.
    Specifies that the text will be repeated to fill the cell.
    Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered.
    Specifies that text should wrap and be aligned to form straight edges on the left and right, except for the last line which is left justified.
    Spedifies left justification.
    Spedifies right justification.
  • 方法概要

    修饰符和类型
    方法
    说明
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    从类继承的方法 java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • 枚举常量详细资料

    • General

      public static final HorizontalAlignment General
      Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered.
    • Left

      public static final HorizontalAlignment Left
      Spedifies left justification.
    • Center

      public static final HorizontalAlignment Center
      Spedifies that the text should be centered.
    • Fill

      public static final HorizontalAlignment Fill
      Specifies that the text will be repeated to fill the cell.
    • Justify

      public static final HorizontalAlignment Justify
      Specifies that text should wrap and be aligned to form straight edges on the left and right, except for the last line which is left justified.
    • CenterContinuous

      public static final HorizontalAlignment CenterContinuous
      Specifies that the horizontal alignment is centered across multiple cells. The information about how many cells to span is expressed in the sheet part, in the row of the cell in question. For each cell that is spanned in the alignment, a cell element needs to be written out, with the same style Id which references the centerContinuous alignment.
    • Distributed

      public static final HorizontalAlignment Distributed
      Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.
  • 方法详细资料

    • values

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

      public static HorizontalAlignment 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值