Class Table

System.Object
EasyXLS.Constants.Table

public class Table extends System.Object
This class contains the constants for table (grid).
  • Constant Summary

    Fields
    Modifier and Type
    Field
    Description
    const int
    A constant indicating whether a search is in cell comments.
    const int
    A constant indicating whether a search is in cell formulas.
    const int
    A constant indicating whether a search is in cell values.
    const int
    The maximum column width in pixels, 255 characters depending by default font.
    const int
    The maximum column number for an Office 2007 or later document.
    const int
    The maximum column number for an Office 97-2003 document.
    const int
    The maximum row height in pixels.
    const int
    The maximum row number for an Office 2007 or later document.
    const int
    The maximum row number for an Office 97-2003 document.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class System.Object

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

    • MAX_ROWS_OFFICE_97_2003

      public const final int MAX_ROWS_OFFICE_97_2003
      The maximum row number for an Office 97-2003 document. Embedded value is 0x10000.
      See Also:
      Constant Values
    • MAX_COLUMNS_OFFICE_97_2003

      public const final int MAX_COLUMNS_OFFICE_97_2003
      The maximum column number for an Office 97-2003 document. Embedded value is 0x100.
      See Also:
      Constant Values
    • MAX_ROWS

      public const final int MAX_ROWS
      The maximum row number for an Office 2007 or later document. Embedded value is 0x100000.
      See Also:
      Constant Values
    • MAX_COLUMNS

      public const final int MAX_COLUMNS
      The maximum column number for an Office 2007 or later document. Embedded value is 0x4000.
      See Also:
      Constant Values
    • MAX_COLUMN_WIDTH

      public const final int MAX_COLUMN_WIDTH
      The maximum column width in pixels, 255 characters depending by default font. Embedded value is 1792.
      See Also:
      Constant Values
    • MAX_ROW_HEIGHT

      public const final int MAX_ROW_HEIGHT
      The maximum row height in pixels. Embedded value is 546.
      See Also:
      Constant Values
    • LOOK_IN_FORMULAS

      public const final int LOOK_IN_FORMULAS
      A constant indicating whether a search is in cell formulas. Embedded value is 0.
      See Also:
      Constant Values
    • LOOK_IN_VALUES

      public const final int LOOK_IN_VALUES
      A constant indicating whether a search is in cell values. Embedded value is 1.
      See Also:
      Constant Values
    • LOOK_IN_COMMENTS

      public const final int LOOK_IN_COMMENTS
      A constant indicating whether a search is in cell comments. Embedded value is 2.
      See Also:
      Constant Values
  • Constructor Details

    • Table

      public Table()