Class ExcelRowsCollection
A collection of rows in a worksheet.
Implements
Inherited Members
Namespace: OfficeOpenXml
Assembly: EPPlus.dll
Syntax
public class ExcelRowsCollection : ExcelRangeRow, IEnumerable<ExcelRangeRow>, IEnumerable, IEnumerator<ExcelRangeRow>, IEnumerator, IDisposable
Properties
this[int]
Indexer for the collection
Declaration
public ExcelRangeRow this[int row] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | row | The row index |
Property Value
| Type | Description |
|---|---|
| ExcelRangeRow | The ExcelRangeRow |
this[int, int]
Indexer for the collection
Declaration
public ExcelRangeRow this[int fromRow, int toRow] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | fromRow | The row index from which collection should start |
| int | toRow | index from which collection should end |
Property Value
| Type | Description |
|---|---|
| ExcelRangeRow | The ExcelRangeRow |