Class ExcelColumnCollection
A collection of columns in a worksheet
Implements
System.Collections.Generic.IEnumerable<ExcelRangeColumn>
System.Collections.IEnumerable
System.Collections.Generic.IEnumerator<ExcelRangeColumn>
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
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 |
---|---|---|
System.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 |
---|---|---|
System.Int32 | fromColumn | Column from index |
System.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