Show / Hide Table of Contents

Class ExcelTableColumnCollection

A collection of table columns

Inheritance
System.Object
ExcelTableColumnCollection
Implements
System.Collections.Generic.IEnumerable<ExcelTableColumn>
System.Collections.IEnumerable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Experior.Core.Data.OfficeOpenXml.Table
Assembly: Experior.Core.dll
Syntax
public class ExcelTableColumnCollection : IEnumerable<ExcelTableColumn>, IEnumerable

Constructors

ExcelTableColumnCollection(ExcelTable)

Declaration
public ExcelTableColumnCollection(ExcelTable table)
Parameters
Type Name Description
ExcelTable table

Properties

Count

Number of items in the collection

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

Item[Int32]

The column Index. Base 0.

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

Item[String]

Indexer

Declaration
public ExcelTableColumn this[string Name] { get; }
Parameters
Type Name Description
System.String Name

The name of the table

Property Value
Type Description
ExcelTableColumn

The table column. Null if the table name is not found in the collection

Table

A reference to the table object

Declaration
public ExcelTable Table { get; }
Property Value
Type Description
ExcelTable

Explicit Interface Implementations

IEnumerable<ExcelTableColumn>.GetEnumerator()

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

IEnumerable.GetEnumerator()

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

Implements

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