Show / Hide Table of Contents

Class ExcelExternalCellCollection

A collection of ExcelExternalCellValue

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

Properties

Current

The current value of the System.Collections.IEnumerable

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

Item[Int32, Int32]

An indexer to access the the external cell values

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

The row of the cell to get the value from

System.Int32 column

The column of the cell to get the value from

Property Value
Type Description
ExcelExternalCellValue

The ExcelExternalCellValue

Item[String]

An indexer to access the the external cell values

Declaration
public ExcelExternalCellValue this[string cellAddress] { get; }
Parameters
Type Name Description
System.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
System.Collections.Generic.IEnumerator<ExcelExternalCellValue>

MoveNext()

Move to the next item in the collection

Declaration
public bool MoveNext()
Returns
Type Description
System.Boolean

true if more items exists

Reset()

Resets the enumeration

Declaration
public void Reset()

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Get the enumerator for this collection

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

IEnumerator.Current

The current value of the System.Collections.IEnumerable

Declaration
object IEnumerator.Current { get; }
Returns
Type Description
System.Object

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
System.Collections.Generic.IEnumerator<T>
System.Collections.IEnumerator
System.IDisposable
In This Article
Back to top Generated by DocFX