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

NameTypeAccessDescription
countintReadReturns the number of rows in this collection.

Methods

SignatureDescription
Rows()Creates an empty Rows collection.
add()RowCreates 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)RowReturns the row at the specified index.
size()intReturns the number of rows in this collection.
getCount()intReturns the number of rows in this collection.
iterator()Iterator<Row>Returns an iterator over the rows in this collection.

See Also