枚举类 LabelAlignment

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

public enum LabelAlignment extends Enum<LabelAlignment>
指定单元格标签位置。
  • 枚举常量详细资料

    • topLeft

      public static final LabelAlignment topLeft
      表示单元格标签位置为左上角。
    • topCenter

      public static final LabelAlignment topCenter
      表示单元格标签位置为顶部居中。
    • topRight

      public static final LabelAlignment topRight
      表示单元格标签位置为右上角。
    • bottomLeft

      public static final LabelAlignment bottomLeft
      表示单元格标签位置为左下。
    • bottomCenter

      public static final LabelAlignment bottomCenter
      表示单元格标签位置为底部居中。
    • bottomRight

      public static final LabelAlignment bottomRight
      表示单元格标签位置在右下角。
  • 方法详细资料

    • values

      public static LabelAlignment[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static LabelAlignment valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值
    • getValue

      public int getValue()
    • getLabelAlignment

      public static LabelAlignment getLabelAlignment(int value)
      返回与指定整数值相关联的标签位置。
      参数:
      value - 表示标签位置的整数值。
      返回:
      与指定值相关联的LabelAlignment枚举常量,如果没有找到匹配项则返回null。