[]
        
立即试用
(Showing Draft Content)

ArrowheadStyle

Enum Class ArrowheadStyle

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

public enum ArrowheadStyle extends Enum<ArrowheadStyle>
指定线条末端的箭头样式。
  • Enum Constant Details

    • None

      public static final ArrowheadStyle None
      指定不显示箭头。
    • Triangle

      public static final ArrowheadStyle Triangle
      指定一个三角箭头。
    • Open

      public static final ArrowheadStyle Open
      指定一个开放箭头。
    • Stealth

      public static final ArrowheadStyle Stealth
      指定一个隐形形状的箭头。
    • Diamond

      public static final ArrowheadStyle Diamond
      指定一个钻石形状的箭头。
    • Oval

      public static final ArrowheadStyle Oval
      指定一个椭圆形的箭头。
  • Method Details

    • values

      public static ArrowheadStyle[] 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 ArrowheadStyle 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