Class FontSettings

System.Object
EasyXLS.Constants.FontSettings

public class FontSettings extends System.Object
This class contains the constants for the font underline style.
  • Constant Summary

    Fields
    Modifier and Type
    Field
    Description
    const System.String
    A constant indicating that the font is the body font.
    const System.String
    A constant indicating that the font is the heading font.
    const int
    A constant indicating that the font has a double underline.
    const int
    A constant indicating that the font has a double accounting underline.
    const int
    A constant indicating that the font does not have any underline.
    const int
    A constant indicating that the font has a single underline.
    const int
    A constant indicating that the font has a single accounting underline.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class System.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • UNDERLINE_STYLE_NONE

      public const final int UNDERLINE_STYLE_NONE
      A constant indicating that the font does not have any underline. Embedded value is 0x00.
      See Also:
      Constant Values
    • UNDERLINE_STYLE_SINGLE

      public const final int UNDERLINE_STYLE_SINGLE
      A constant indicating that the font has a single underline. Embedded value is 0x01.
      See Also:
      Constant Values
    • UNDERLINE_STYLE_DOUBLE

      public const final int UNDERLINE_STYLE_DOUBLE
      A constant indicating that the font has a double underline. Embedded value is 0x02.
      See Also:
      Constant Values
    • UNDERLINE_STYLE_SINGLE_ACCOUNTING

      public const final int UNDERLINE_STYLE_SINGLE_ACCOUNTING
      A constant indicating that the font has a single accounting underline. Embedded value is 0x21.
      See Also:
      Constant Values
    • UNDERLINE_STYLE_DOUBLE_ACCOUNTING

      public const final int UNDERLINE_STYLE_DOUBLE_ACCOUNTING
      A constant indicating that the font has a double accounting underline. Embedded value is 0x22.
      See Also:
      Constant Values
    • HEADINGS_FONT

      public const final System.String HEADINGS_FONT
      A constant indicating that the font is the heading font. Embedded value is HEADINGS.
      See Also:
      Constant Values
    • BODY_FONT

      public const final System.String BODY_FONT
      A constant indicating that the font is the body font. Embedded value is BODY.
      See Also:
      Constant Values
  • Constructor Details

    • FontSettings

      public FontSettings()