Show / Hide Table of Contents

Class ExcelIgnoredErrorCollection

A collection of ignored errors per range for a worksheet

Inheritance
System.Object
ExcelIgnoredErrorCollection
Implements
System.Collections.Generic.IEnumerable<ExcelIgnoredError>
System.Collections.IEnumerable
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 ExcelIgnoredErrorCollection : IEnumerable<ExcelIgnoredError>, IEnumerable, IDisposable

Properties

Count

Number of items in the collection

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Item[Int32]

Indexer for the collection

Declaration
public ExcelIgnoredError this[int Index] { get; }
Parameters
Type Name Description
System.Int32 Index

This index

Property Value
Type Description
ExcelIgnoredError

Methods

Add(ExcelAddressBase)

Adds an IgnoreError item to the collection

Declaration
public ExcelIgnoredError Add(ExcelAddressBase address)
Parameters
Type Name Description
ExcelAddressBase address

The address to add

Returns
Type Description
ExcelIgnoredError

The IgnoreError Item

Dispose()

Declaration
public void Dispose()

GetEnumerator()

Gets the enumerator for the collection

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

The enumerator

Explicit Interface Implementations

IEnumerable<ExcelIgnoredError>.GetEnumerator()

Gets the enumerator for the collection

Declaration
IEnumerator<ExcelIgnoredError> IEnumerable<ExcelIgnoredError>.GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<ExcelIgnoredError>

The enumerator

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
System.IDisposable
Back to top Generated by DocFX