Class ExcelIgnoredErrorCollection
A collection of ignored errors per range for a worksheet
Inheritance
Object
ExcelIgnoredErrorCollection
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
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 |
|---|---|
| Int32 |
Item[Int32]
Indexer for the collection
Declaration
public ExcelIgnoredError this[int Index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| 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()
Called when the class is disposed.
Declaration
public void Dispose()
Explicit Interface Implementations
IEnumerable<ExcelIgnoredError>.GetEnumerator()
Gets the enumerator for the collection
Declaration
IEnumerator<ExcelIgnoredError> IEnumerable<ExcelIgnoredError>.GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<ExcelIgnoredError> | The enumerator |
IEnumerable.GetEnumerator()
Gets the enumerator for the collection
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator | The enumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
System.IDisposable