Class ExcelExternalCellCollection
- Namespace
- OfficeOpenXml.ExternalReferences
- Assembly
- EPPlus.dll
A collection of ExcelExternalCellValue
public class ExcelExternalCellCollection : IEnumerable<ExcelExternalCellValue>, IEnumerable, IEnumerator<ExcelExternalCellValue>, IEnumerator, IDisposable
- Inheritance
-
ExcelExternalCellCollection
- Implements
- Inherited Members
Properties
Current
The current value of the IEnumerable
public ExcelExternalCellValue Current { get; }
Property Value
this[int, int]
An indexer to access the the external cell values
public ExcelExternalCellValue this[int row, int column] { get; }
Parameters
row
intThe row of the cell to get the value from
column
intThe column of the cell to get the value from
Property Value
this[string]
An indexer to access the the external cell values
public ExcelExternalCellValue this[string cellAddress] { get; }
Parameters
cellAddress
stringThe cell address
Property Value
Methods
Dispose()
Disposed the object
public void Dispose()
GetEnumerator()
Get the enumerator for this collection
public IEnumerator<ExcelExternalCellValue> GetEnumerator()
Returns
MoveNext()
Move to the next item in the collection
public bool MoveNext()
Returns
- bool
true if more items exists
Reset()
Resets the enumeration
public void Reset()