Uses of Class
aspose.pdf.Row

Uses of Row in aspose.pdf
 

Methods in aspose.pdf that return Row
 Row Rows.add()
          Initializes a new instance of the Row class and add it to the Rows collection.
 Row Cell.getRow()
          Gets a Row object that contains the cell.
 Row Cells.getRow()
          Gets the parent row of this cells collection.
 Row Rows.getRow(int index)
          Gets a Row object from the collection according to Row index.
 Row Rows.getRow(java.lang.String rowID)
          Gets a Row object from the collection according to Row ID.
 

Methods in aspose.pdf with parameters of type Row
 void Rows.add(Row row)
          Adds a new Row object into the collection.
 void Rows.addRow(Row row)
          Adds a new Row object into the collection.
 void Rows.copyTo(Row[] rowArray, int index)
          Copies the elements to a Row object array, starting at a specified array index.
 int Rows.indexOf(Row row)
          Gets the index of a specified row in the collection.
 void Rows.insert(int index, Row row)
          Inserts a new Row object into the collection at specified position.
 void Rows.insert(Row rowToInsertAfter, Row newRow)
          Inserts a new Row object into the collection after specified Cell object.
 void Rows.moveAfter(Row rowToMoveAfter, Rows newRows)
          move the row from row collection
 void Rows.moveAt(Row rowToMoveAt, Rows newRows)
          move row from row collection
 void Rows.remove(Row rowToRemove)
          Removes a Row object from the collection.
 void Rows.setRow(int index, Row value)
          Sets a Row object from the collection according to Row index.
 void Cell.setRow(Row parentRow)
          Sets a Row object that contains the cell.
 void Cells.setRow(Row value)
          Sets the parent row of this cells collection.
 void Rows.setRow(java.lang.String rowID, Row value)
          Sets a Row object from the collection according to Row ID.
 

Constructors in aspose.pdf with parameters of type Row
Cell(Row row)
          Constructor - initializes a new instance of the Cell class in a table.