[]
        
首页
开发者学堂
文档
论坛
市场
生态机会
活动
立即试用
(Showing Draft Content)

TextUnderlineType

Enum Class TextUnderlineType

java.lang.Object
java.lang.Enum<TextUnderlineType>
com.grapecity.documents.excel.drawing.TextUnderlineType
All Implemented Interfaces:
Serializable, Comparable<TextUnderlineType>, Constable

public enum TextUnderlineType extends Enum<TextUnderlineType>
表示文本下划线的类型。
  • Enum Constant Details

    • None

      public static final TextUnderlineType None
      指定无下划线。
    • Words

      public static final TextUnderlineType Words
      指定下划线单词。
    • Single

      public static final TextUnderlineType Single
      指定单行下划线。
    • Double

      public static final TextUnderlineType Double
      指定双线下划线。
    • Heavy

      public static final TextUnderlineType Heavy
      指定粗线下划线。
    • Dotted

      public static final TextUnderlineType Dotted
      指定一个点线下划线。
    • DottedHeavy

      public static final TextUnderlineType DottedHeavy
      指定一个点划粗线下划线。
    • Dash

      public static final TextUnderlineType Dash
      指定一个虚线下划线。
    • DashHeavy

      public static final TextUnderlineType DashHeavy
      指定一个虚线下划线。
    • DashLong

      public static final TextUnderlineType DashLong
      指定一个虚线的长下划线。
    • DashLongHeavy

      public static final TextUnderlineType DashLongHeavy
      指定一个长而粗的下划线。
    • DotDash

      public static final TextUnderlineType DotDash
      指定一个点划线下划线。
    • DotDashHeavy

      public static final TextUnderlineType DotDashHeavy
      指定一个点划线重线下划线。
    • DotDotDash

      public static final TextUnderlineType DotDotDash
      指定一个点划线下划线。
    • DotDotDashHeavy

      public static final TextUnderlineType DotDotDashHeavy
      指定一个点划线重底线。
    • Wavy

      public static final TextUnderlineType Wavy
      指定波浪线下划线。
    • WavyHeavy

      public static final TextUnderlineType WavyHeavy
      指定一个波浪形的粗下划线。
    • WavyDouble

      public static final TextUnderlineType WavyDouble
      指定一个波浪双线下划线。
  • Method Details

    • values

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

      public static TextUnderlineType 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.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null