枚举类 LineDashStyle

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

public enum LineDashStyle extends Enum<LineDashStyle>
指定线条的虚线样式。
  • 枚举常量详细资料

    • Solid

      public static final LineDashStyle Solid
      指定线条为实线。
    • SquareDot

      public static final LineDashStyle SquareDot
      指定线条由方形点组成。
    • RoundDot

      public static final LineDashStyle RoundDot
      指定线条由圆形点组成。
    • Dash

      public static final LineDashStyle Dash
      指定该行仅由破折号组成。
    • DashDot

      public static final LineDashStyle DashDot
      指定线条为点划线模式。
    • DashDotDot

      public static final LineDashStyle DashDotDot
      指定线条为点划线(dash-dot-dot pattern)。
    • LongDash

      public static final LineDashStyle LongDash
      指定该线由长破折号组成。
    • LongDashDot

      public static final LineDashStyle LongDashDot
      指定线条为长虚线点图案。
    • LongDashDotDot

      public static final LineDashStyle LongDashDotDot
      指定线条为长虚线点点的模式。
    • SysDash

      public static final LineDashStyle SysDash
      指定该行为长系统短划线图案。
    • SysDot

      public static final LineDashStyle SysDot
      指定该行为长系统点模式。
    • SysDashDot

      public static final LineDashStyle SysDashDot
      指定该行为长系统点划线模式。
    • Mixed

      public static final LineDashStyle Mixed
      仅适用于特殊形状。
  • 方法详细资料

    • values

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

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