Interface ICell

    • Method Detail

      • getRow

        int getRow()
      • getColumn

        int getColumn()
      • getAbsoluteRow

        int getAbsoluteRow()
        Returns:
        Absolute row index inside the sheet.
      • getAbsoluteColumn

        int getAbsoluteColumn()
        Returns:
        Absolute column index inside the sheet.
      • getAbsoluteRegion

        IGridRegion getAbsoluteRegion()
        Returns:
        Absolute region of cell inside the sheet.
      • getWidth

        int getWidth()
      • getHeight

        int getHeight()
      • getObjectValue

        Object getObjectValue()
      • getStringValue

        String getStringValue()
      • getRegion

        IGridRegion getRegion()
        Returns:
        grid region, if cell belongs to any merged region. In other cases null.
      • getFormula

        String getFormula()
      • getType

        int getType()
        Returns one of IGrid.CELL_TYPE_* values.
      • hasNativeType

        boolean hasNativeType()
        Returns:
        true if the cell has ability to provide fast access to the native value(cached) If cell has not such an ability, the native methods should not be used
      • getNativeType

        int getNativeType()
        Returns:
        IGrid.CELL_TYPE... constant, in case of CELL_TYPE_FORMULA returns cached value type
      • getNativeNumber

        double getNativeNumber()
      • getNativeBoolean

        boolean getNativeBoolean()
      • getNativeDate

        Date getNativeDate()
      • getTopLeftCellFromRegion

        ICell getTopLeftCellFromRegion()