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