Rows
Overview
Rows is a class in Aspose.Pdf FOSS for Java.
Inherits from: Iterable<Row>.
Represents an ordered collection of {@link Row} instances within a {@link Table}.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
count | int | Read | Returns the number of rows in this collection. |
Methods
| Signature | Description |
|---|---|
Rows() | Creates an empty Rows collection. |
add() → Row | Creates a new empty {@link Row}, adds it to this collection, and returns it. |
add(row: Row) | Adds an existing {@link Row} to this collection. |
get(index: int) → Row | Returns the row at the specified index. |
size() → int | Returns the number of rows in this collection. |
getCount() → int | Returns the number of rows in this collection. |
iterator() → Iterator<Row> | Returns an iterator over the rows in this collection. |