A collection of hidden instances.
Inheritance
object
Implements
- ICollection<WorksheetColumn>
- IEnumerable<WorksheetColumn>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of columns in the collection.
public int Count { get; } this[int]
Section titled "this[int]"Gets the column at the specified index.
public WorksheetColumn this[int index] { get; } Worksheet
Section titled "Worksheet"Gets the worksheet associated with this collection.
public Worksheet Worksheet { get; } Methods
Section titled "Methods"Add(WorksheetColumn)
Section titled "Add(WorksheetColumn)"Adds a column to the collection.
public void Add(WorksheetColumn column) Parameters
- column:
WorksheetColumn
Returns any
Clear()
Section titled "Clear()"Clears all columns from the collection.
public void Clear() Returns any
Contains(WorksheetColumn)
Section titled "Contains(WorksheetColumn)"Determines whether the specified column exists in the collection.
public bool Contains(WorksheetColumn column) Parameters
- column:
WorksheetColumn
Returns any
Remove(WorksheetColumn)
Section titled "Remove(WorksheetColumn)"Removes the specified column from the collection if it exists.
public bool Remove(WorksheetColumn column) Parameters
- column:
WorksheetColumn
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the column at the specified index in the collection.
public void RemoveAt(int index) Parameters
- index:
int