Class Border

System.Object
EasyXLS.Constants.Border

public class Border extends System.Object
This class contains the constants for borderline styles when formatting cells.
  • Constant Summary

    Fields
    Modifier and Type
    Field
    Description
    const int
    A constant indicating the dash-dot line style for cell border.
    const int
    A constant indicating the dash-dot-dot line style for cell border.
    const int
    A constant indicating the dashed line style for cell border.
    const int
    A constant indicating the dotted line style for cell border.
    const int
    A constant indicating the double line style for cell border.
    const int
    A constant indicating the hair line style for cell border.
    const int
    A constant indicating the medium line style for cell border.
    const int
    A constant indicating the medium dash-dot line style for cell border.
    const int
    A constant indicating the medium dash-dot-dot line style for cell border.
    const int
    A constant indicating the medium dashed line style for cell border.
    const int
    A constant indicating that the cell does not have a border.
    const int
    A constant indicating the slated dash-dot line style for cell border.
    const int
    A constant indicating the thick line style for cell border.
    const int
    A constant indicating the thin line style for cell border.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class System.Object

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

    • BORDER_NONE

      public const final int BORDER_NONE
      A constant indicating that the cell does not have a border. Embedded value is "0".
      See Also:
      Constant Values
    • BORDER_THIN

      public const final int BORDER_THIN
      A constant indicating the thin line style for cell border. Embedded value is "1".
      See Also:
      Constant Values
    • BORDER_MEDIUM

      public const final int BORDER_MEDIUM
      A constant indicating the medium line style for cell border. Embedded value is "2".
      See Also:
      Constant Values
    • BORDER_DASHED

      public const final int BORDER_DASHED
      A constant indicating the dashed line style for cell border. Embedded value is "3".
      See Also:
      Constant Values
    • BORDER_DOTTED

      public const final int BORDER_DOTTED
      A constant indicating the dotted line style for cell border. Embedded value is "4".
      See Also:
      Constant Values
    • BORDER_THICK

      public const final int BORDER_THICK
      A constant indicating the thick line style for cell border. Embedded value is "5".
      See Also:
      Constant Values
    • BORDER_DOUBLE

      public const final int BORDER_DOUBLE
      A constant indicating the double line style for cell border. Embedded value is "6".
      See Also:
      Constant Values
    • BORDER_HAIR

      public const final int BORDER_HAIR
      A constant indicating the hair line style for cell border. Embedded value is "7".
      See Also:
      Constant Values
    • BORDER_MEDIUM_DASHED

      public const final int BORDER_MEDIUM_DASHED
      A constant indicating the medium dashed line style for cell border. Embedded value is "8".
      See Also:
      Constant Values
    • BORDER_DASH_DOT

      public const final int BORDER_DASH_DOT
      A constant indicating the dash-dot line style for cell border. Embedded value is "9".
      See Also:
      Constant Values
    • BORDER_MEDIUM_DASH_DOT

      public const final int BORDER_MEDIUM_DASH_DOT
      A constant indicating the medium dash-dot line style for cell border. Embedded value is "10".
      See Also:
      Constant Values
    • BORDER_DASH_DOT_DOT

      public const final int BORDER_DASH_DOT_DOT
      A constant indicating the dash-dot-dot line style for cell border. Embedded value is "11".
      See Also:
      Constant Values
    • BORDER_MEDIUM_DASH_DOT_DOT

      public const final int BORDER_MEDIUM_DASH_DOT_DOT
      A constant indicating the medium dash-dot-dot line style for cell border. Embedded value is "12".
      See Also:
      Constant Values
    • BORDER_SLANTED_DASH_DOT

      public const final int BORDER_SLANTED_DASH_DOT
      A constant indicating the slated dash-dot line style for cell border. Embedded value is "13".
      See Also:
      Constant Values
  • Constructor Details

    • Border

      public Border()