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. |
Item[Int32]
Indexer for the collection
Declaration
public ExcelIgnoredError this[int Index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System. |
Index | This index |
Property Value
Type | Description |
---|---|
Excel |
Methods
Add(ExcelAddressBase)
Adds an IgnoreError item to the collection
Declaration
public ExcelIgnoredError Add(ExcelAddressBase address)
Parameters
Type | Name | Description |
---|---|---|
Excel |
address | The address to add |
Returns
Type | Description |
---|---|
Excel |
The IgnoreError Item |
Dispose()
Declaration
public void Dispose()
GetEnumerator()
Gets the enumerator for the collection
Declaration
public IEnumerator GetEnumerator()
Returns
Type | Description |
---|---|
System. |
The enumerator |
Explicit Interface Implementations
IEnumerable<ExcelIgnoredError>.GetEnumerator()
Gets the enumerator for the collection
Declaration
IEnumerator<ExcelIgnoredError> IEnumerable<ExcelIgnoredError>.GetEnumerator()
Returns
Type | Description |
---|---|
System. |
The enumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
System.IDisposable