Table of Contents

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

ExcelExternalCellValue

this[int, int]

An indexer to access the the external cell values

public ExcelExternalCellValue this[int row, int column] { get; }

Parameters

row int

The row of the cell to get the value from

column int

The column of the cell to get the value from

Property Value

ExcelExternalCellValue

The ExcelExternalCellValue

this[string]

An indexer to access the the external cell values

public ExcelExternalCellValue this[string cellAddress] { get; }

Parameters

cellAddress string

The cell address

Property Value

ExcelExternalCellValue

The ExcelExternalCellValue

Methods

Dispose()

Disposed the object

public void Dispose()

GetEnumerator()

Get the enumerator for this collection

public IEnumerator<ExcelExternalCellValue> GetEnumerator()

Returns

IEnumerator<ExcelExternalCellValue>

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()