枚举类 BackgroundImageLayout

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

public enum BackgroundImageLayout extends Enum<BackgroundImageLayout>
指定如何拉伸背景图像以填充目标矩形。
  • 枚举常量详细资料

    • Stretch

      public static final BackgroundImageLayout Stretch
      指定调整图像大小以填充目标尺寸。宽高比不会被保持。
    • Center

      public static final BackgroundImageLayout Center
      指定在目标矩形内将图像居中对齐。
    • Zoom

      public static final BackgroundImageLayout Zoom
      指定调整图像大小以适应目标尺寸,同时保持图像的原始宽高比。
    • None

      public static final BackgroundImageLayout None
      指定将图像左对齐并显示在目标矩形的顶部。
  • 方法详细资料

    • values

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

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

      public int getValue()
      获取表示枚举常量的整数值。
      返回:
      枚举常量的序数值。
    • forValue

      public static BackgroundImageLayout forValue(Integer value)
      根据指定的整数值获取对应的枚举常量。
      参数:
      value - 表示枚举常量的整数值。
      返回:
      BackgroundImageLayout 枚举常量。