Interface Row

    • Method Detail

      • getRowIndex

        int getRowIndex()
        Returns the value of the 'Row Index' attribute. The default value is "-1".
        Returns:
        the value of the 'Row Index' attribute.
        See Also:
        ExcelPackage.getRow_RowIndex()
      • getCells

        MDWEList<Cell> getCells()
        Returns the value of the 'Cells' containment reference list. The list contents are of type Cell. It is bidirectional and its opposite is 'Row'.
        Returns:
        the value of the 'Cells' containment reference list.
        See Also:
        ExcelPackage.getRow_Cells(), Cell.getRow()
      • setSheet

        void setSheet​(Sheet value)
        Sets the value of the 'Sheet' container reference.
        Parameters:
        value - the new value of the 'Sheet' container reference.
        See Also:
        getSheet()
      • setHeight

        void setHeight​(float value)
        Sets the value of the 'Height' attribute.
        Parameters:
        value - the new value of the 'Height' attribute.
        See Also:
        getHeight()
      • addCell

        Cell addCell​(String value)
        Adds a new cell with the specified value at the right of the last known cell for this row.
        Parameters:
        value - the value of the new cell.
        Returns:
        the created cell.
      • addCells

        Cell[] addCells​(String[] values)
        Adds new cells with the specified values at the right of the last known cell for this row.
        Parameters:
        values - the values of each cell to create.
        Returns:
        the created cells.
      • addBlankCells

        Cell[] addBlankCells​(int number)
        Adds new empty cells at the right of the last known cell for this row.
        Parameters:
        number - the number of empty cells to create.
        Returns:
        the created cells.