Show / Hide Table of Contents

Class ExcelExternalCellCollection

A collection of ExcelExternalCellValue

Inheritance
object
ExcelExternalCellCollection
Implements
IEnumerable<ExcelExternalCellValue>
IEnumerable
IEnumerator<ExcelExternalCellValue>
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.ExternalReferences
Assembly: EPPlus.dll
Syntax
public class ExcelExternalCellCollection : IEnumerable<ExcelExternalCellValue>, IEnumerable, IEnumerator<ExcelExternalCellValue>, IEnumerator, IDisposable

Properties

Current

The current value of the IEnumerable

Declaration
public ExcelExternalCellValue Current { get; }
Property Value
Type Description
ExcelExternalCellValue

this[int, int]

An indexer to access the the external cell values

Declaration
public ExcelExternalCellValue this[int row, int column] { get; }
Parameters
Type Name Description
int row

The row of the cell to get the value from

int column

The column of the cell to get the value from

Property Value
Type Description
ExcelExternalCellValue

The ExcelExternalCellValue

this[string]

An indexer to access the the external cell values

Declaration
public ExcelExternalCellValue this[string cellAddress] { get; }
Parameters
Type Name Description
string cellAddress

The cell address

Property Value
Type Description
ExcelExternalCellValue

The ExcelExternalCellValue

Methods

Dispose()

Disposed the object

Declaration
public void Dispose()

GetEnumerator()

Get the enumerator for this collection

Declaration
public IEnumerator<ExcelExternalCellValue> GetEnumerator()
Returns
Type Description
IEnumerator<ExcelExternalCellValue>

MoveNext()

Move to the next item in the collection

Declaration
public bool MoveNext()
Returns
Type Description
bool

true if more items exists

Reset()

Resets the enumeration

Declaration
public void Reset()

Implements

IEnumerable<T>
IEnumerable
IEnumerator<T>
IEnumerator
IDisposable
In this article
Back to top Generated by DocFX