Class ExcelColumnCollection
A collection of columns in a worksheet
Implements
IEnumerable<ExcelRangeColumn>
IEnumerable
IEnumerator<ExcelRangeColumn>
IEnumerator
IDisposable
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 ExcelColumnCollection : ExcelRangeColumn, IEnumerable<ExcelRangeColumn>, IEnumerable, IEnumerator<ExcelRangeColumn>, IEnumerator, IDisposable
Properties
Item[Int32]
Indexer referenced by column index
Declaration
public ExcelRangeColumn this[int column] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | column | The column index |
Property Value
| Type | Description |
|---|---|
| ExcelRangeColumn | The column |
Item[Int32, Int32]
Indexer referenced by from and to column index
Declaration
public ExcelRangeColumn this[int fromColumn, int toColumn] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | fromColumn | Column from index |
| Int32 | toColumn | Column to index |
Property Value
| Type | Description |
|---|---|
| ExcelRangeColumn |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
System.Collections.Generic.IEnumerator<T>
System.Collections.IEnumerator
System.IDisposable