A collection of hidden instances.

Inheritance

Implements
  • ICollection<WorksheetColumn>
  • IEnumerable<WorksheetColumn>
  • IEnumerable

Gets the number of columns in the collection.

public int Count { get; }

Gets the column at the specified index.

public WorksheetColumn this[int index] { get; }

Gets the worksheet associated with this collection.

public Worksheet Worksheet { get; }

Adds a column to the collection.

public void Add(WorksheetColumn column)

Parameters

  • column: WorksheetColumn

Returns any

Clears all columns from the collection.

public void Clear()

Returns any

Determines whether the specified column exists in the collection.

public bool Contains(WorksheetColumn column)

Parameters

  • column: WorksheetColumn

Returns any

Removes the specified column from the collection if it exists.

public bool Remove(WorksheetColumn column)

Parameters

  • column: WorksheetColumn

Returns any

Removes the column at the specified index in the collection.

public void RemoveAt(int index)

Parameters

  • index: int

Returns any