Enum Class LineDashStyle

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

public enum LineDashStyle extends Enum<LineDashStyle>
Specifies the dash style for a line.
  • 枚举常量详细资料

    • Solid

      public static final LineDashStyle Solid
      Specifies the line is solid.
    • SquareDot

      public static final LineDashStyle SquareDot
      Specifies the line is made up of square dots.
    • RoundDot

      public static final LineDashStyle RoundDot
      Specifies the line is made up of round dots.
    • Dash

      public static final LineDashStyle Dash
      Specifies the line consists of only dashes.
    • DashDot

      public static final LineDashStyle DashDot
      Specifies the line is a dash-dot pattern.
    • DashDotDot

      public static final LineDashStyle DashDotDot
      Specifies the line is a dash-dot-dot pattern.
    • LongDash

      public static final LineDashStyle LongDash
      Specifies the line consists of long dashes.
    • LongDashDot

      public static final LineDashStyle LongDashDot
      Specifies the line is a long dash-dot pattern.
    • LongDashDotDot

      public static final LineDashStyle LongDashDotDot
      Specifies the line is a long dash-dot-dot pattern.
    • SysDash

      public static final LineDashStyle SysDash
      Specifies the line is a long system-dash pattern.
    • SysDot

      public static final LineDashStyle SysDot
      Specifies the line is a long system-dot pattern.
    • SysDashDot

      public static final LineDashStyle SysDashDot
      Specifies the line is a long system-dash-dot pattern.
    • Mixed

      public static final LineDashStyle Mixed
      For special shapes use only.
  • 方法详细资料

    • values

      public static LineDashStyle[] 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 LineDashStyle 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 - 如果参数为空值