Class ExcelRowsCollection
A collection of rows in a worksheet.
Implements
System.Collections.Generic.IEnumerable<ExcelRangeRow>
System.Collections.IEnumerable
System.Collections.Generic.IEnumerator<ExcelRangeRow>
System.Collections.IEnumerator
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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 |
---|---|---|
System.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 |
---|---|---|
System.Int32 | fromRow | The row index from which collection should start |
System.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